INPUT_OBJECT

CreateEntity

link GraphQL Schema definition

1input CreateEntity {
3
2name: String!
5
4description: String
7
6libraryId: ID!
9
8profileImageUrl: 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
21
20isPublished: Boolean
22}