INPUT_OBJECT

UpdateEntityIdentifier

link GraphQL Schema definition

1input UpdateEntityIdentifier {
3
2id: ID!
5
4title: String
7
6isPriority: Boolean
9
8url: String
14
10# GraphQL-formatted JSON-like structure containing freeform metadata.
11# If a schema is associated with the entity type, the input will be
12# validated against the schema. Use this field _or_ `jsonstring`, not both.
13jsondata: JSONData
19
15# A string containing valid JSON with freeform metadata.
16# If a schema is associated with the entity type, the input will be
17# validated against the schema. Use this field _or_ `jsondata`, not both.
18jsonstring: String
20}