INPUT_OBJECT
CreateEntity
link GraphQL Schema definition
1 input CreateEntity { 3 2 : String! 5 4 : String 7 6 : ID! 9 8 : 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. 13 : 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. 18 : String 21 20 : Boolean 22 }