INPUT_OBJECT
CreateOrganization
link GraphQL Schema definition
1 input CreateOrganization { 5 2 # A unique identifier will be generated by default. 3 # This property should only be defined manually when cloning between instances. 4 : ID 7 6 : String! 9 8 : JSONData 12 10 # Metadata in JSON format. 11 : JSONData! 14 13 : Int 16 15 : Int 18 17 : OrganizationStatus 20 19 : Int 22 21 : Int 24 23 : String! 26 25 : JSONData 28 27 : [OrganizationType] 32 29 # The budget remaining for organization (cents) 30 # Only superadmin can set this value 31 : Int 36 33 # Enable/disable the limit enforced for organization 34 # Only superadmin can set this value 35 : Boolean 39 37 # For HUB to use 38 : Boolean 43 40 # Enable and configure or disable the custom login page for the organization. 41 # Default is disabled. 42 : SetLoginConfiguration 46 44 # Only a single policy with the action of PURGE is currently supported. 45 : [DataRetentionPolicyInput!] 47 }