INPUT_OBJECT
PropertyInputType
# GraphQL Schema definition
1 input PropertyInputType { 5 2 # Adds provided value at the end of an array property. It's secure atomic 3 # operation executed in separate transaction 4 String : 9 6 # Removes provided value from an array property. It's secure atomic operation 7 # executed in separate transaction 8 String : 13 10 # Decrements property value by provided value. It's secure atomic operation 11 # executed in separate transaction 12 Float : 17 14 # Increments property value by provided value. It's secure atomic operation 15 # executed in separate transaction 16 Float : 19 18 String! : 21 20 String : 23 22 String] : [ 25 24 Boolean : 27 26 Float : 29 28 Int : 31 30 JSONPayload : 33 32 ValueUploadInput : 34 }