listEdit Mutation
Description
Updates the title of an existing customer list.
mutation listEdit($listRef: ID!, $title: String!) {
listEdit(listRef: $listRef, title: $title) {
_id
id
title
description
created
count
system
}
}
Variables
{
"listRef": "a192f2a90207410426147219",
"title": "title"
}
Response
{
"listEdit": {
"_id": "ae84fe19b59d808a749d3389",
"id": 1019551759604,
"title": "example",
"description": "example",
"created": 1756620950430,
"count": 10,
"system": true
}
}
Arguments
| Name | Type | Description |
|---|---|---|
listRef | ID! | Reference ID of the customer list to update. |
title | String! | New title for the customer list. |
Returns
List!