POST http://dev.amply.tools/admin/graphql/

GraphQL requests

20 HTTP queries on GraphQL endpoint(s)

Refresh with latest query
200 May 5, 2025 10:28 schema: default 595d60
# Time Info
1 29 ms
{ }
Variables:
null

    query IntrospectionQuery {
      __schema {
        
        queryType { name }
        mutationType { name }
        subscriptionType { name }
        types {
          ...FullType
        }
        directives {
          name
          description
          
          locations
          args {
            ...InputValue
          }
        }
      }
    }

    fragment FullType on __Type {
      kind
      name
      description
      
      fields(includeDeprecated: true) {
        name
        description
        args {
          ...InputValue
        }
        type {
          ...TypeRef
        }
        isDeprecated
        deprecationReason
      }
      inputFields {
        ...InputValue
      }
      interfaces {
        ...TypeRef
      }
      enumValues(includeDeprecated: true) {
        name
        description
        isDeprecated
        deprecationReason
      }
      possibleTypes {
        ...TypeRef
      }
    }

    fragment InputValue on __InputValue {
      name
      description
      type { ...TypeRef }
      defaultValue
      
      
    }

    fragment TypeRef on __Type {
      kind
      name
      ofType {
        kind
        name
        ofType {
          kind
          name
          ofType {
            kind
            name
            ofType {
              kind
              name
              ofType {
                kind
                name
                ofType {
                  kind
                  name
                  ofType {
                    kind
                    name
                  }
                }
              }
            }
          }
        }
      }
    }
  
[
  "data" => [
    "__schema" => [
      "queryType" => [
        "name" => "Query"
      ]
      "mutationType" => [
        "name" => "Mutation"
      ]
      "subscriptionType" => null
      "types" => [
        [
          "kind" => "OBJECT"
          "name" => "Query"
          "description" => null
          "fields" => [
            [
              "name" => "id"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "countries"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Country"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "SCALAR"
          "name" => "String"
          "description" => """
            The `String` scalar type represents textual data, represented as UTF-8\n
            character sequences. The String type is most often used by GraphQL to\n
            represent free-form human-readable text.
            """
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "Country"
          "description" => null
          "fields" => [
            [
              "name" => "code"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "Mutation"
          "description" => null
          "fields" => [
            [
              "name" => "refreshToken"
              "description" => "Refresh tokens"
              "args" => [
                [
                  "name" => "token"
                  "description" => "Refresh Token"
                  "type" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "SCALAR"
                      "name" => "String"
                      "ofType" => null
                    ]
                  ]
                  "defaultValue" => null
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "AuthPayload"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "login"
              "description" => "User login with email and password"
              "args" => [
                [
                  "name" => "input"
                  "description" => null
                  "type" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "INPUT_OBJECT"
                      "name" => "LoginInput"
                      "ofType" => null
                    ]
                  ]
                  "defaultValue" => null
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "AuthPayload"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "resetPassword"
              "description" => "User reset password"
              "args" => [
                [
                  "name" => "input"
                  "description" => null
                  "type" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "INPUT_OBJECT"
                      "name" => "ResetPasswordInput"
                      "ofType" => null
                    ]
                  ]
                  "defaultValue" => null
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "signup"
              "description" => "User registration with email and password"
              "args" => [
                [
                  "name" => "input"
                  "description" => null
                  "type" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "INPUT_OBJECT"
                      "name" => "RegistrationUserInput"
                      "ofType" => null
                    ]
                  ]
                  "defaultValue" => null
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "AuthPayload"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "updatePassword"
              "description" => "User update password"
              "args" => [
                [
                  "name" => "input"
                  "description" => null
                  "type" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "INPUT_OBJECT"
                      "name" => "UpdatePasswordInput"
                      "ofType" => null
                    ]
                  ]
                  "defaultValue" => null
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "AuthPayload"
          "description" => null
          "fields" => [
            [
              "name" => "token"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "refreshToken"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "user"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "AmplyUser"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "organization"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Organization"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "AmplyUser"
          "description" => null
          "fields" => [
            [
              "name" => "email"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "role"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "status"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "avatar"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "Organization"
          "description" => null
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "id"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "UUID"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "users"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "AmplyUser"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "projectsCount"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "Int"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "projects"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Project"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "logo"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "SCALAR"
          "name" => "UUID"
          "description" => null
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "SCALAR"
          "name" => "Int"
          "description" => """
            The `Int` scalar type represents non-fractional signed whole numeric\n
            values. Int can represent values between -(2^31) and 2^31 - 1. 
            """
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "Project"
          "description" => null
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "id"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "UUID"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "applications"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Application"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "image"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "Application"
          "description" => null
          "fields" => [
            [
              "name" => "id"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "UUID"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "bundleId"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "image"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "platform"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "project"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Project"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "apiKeys"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "ApiKey"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "ApiKey"
          "description" => null
          "fields" => [
            [
              "name" => "public"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "secret"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "application"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "Application"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "lastUsed"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "DateTime"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "SCALAR"
          "name" => "DateTime"
          "description" => null
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "INPUT_OBJECT"
          "name" => "LoginInput"
          "description" => null
          "fields" => null
          "inputFields" => [
            [
              "name" => "email"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "password"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "INPUT_OBJECT"
          "name" => "ResetPasswordInput"
          "description" => null
          "fields" => null
          "inputFields" => [
            [
              "name" => "email"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "SCALAR"
          "name" => "Boolean"
          "description" => "The `Boolean` scalar type represents `true` or `false`."
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "INPUT_OBJECT"
          "name" => "RegistrationUserInput"
          "description" => null
          "fields" => null
          "inputFields" => [
            [
              "name" => "email"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "password"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "organization"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "name"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "INPUT_OBJECT"
          "name" => "UpdatePasswordInput"
          "description" => null
          "fields" => null
          "inputFields" => [
            [
              "name" => "token"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "newPassword"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
            [
              "name" => "newPasswordRepeat"
              "description" => null
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
          "interfaces" => null
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__Schema"
          "description" => "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations."
          "fields" => [
            [
              "name" => "types"
              "description" => "A list of all types supported by this server."
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "LIST"
                  "name" => null
                  "ofType" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "OBJECT"
                      "name" => "__Type"
                      "ofType" => null
                    ]
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "queryType"
              "description" => "The type that query operations will be rooted at."
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "__Type"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "mutationType"
              "description" => "If this server supports mutation, the type that mutation operations will be rooted at."
              "args" => []
              "type" => [
                "kind" => "OBJECT"
                "name" => "__Type"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "subscriptionType"
              "description" => "If this server support subscription, the type that subscription operations will be rooted at."
              "args" => []
              "type" => [
                "kind" => "OBJECT"
                "name" => "__Type"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "directives"
              "description" => "A list of all directives supported by this server."
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "LIST"
                  "name" => null
                  "ofType" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "OBJECT"
                      "name" => "__Directive"
                      "ofType" => null
                    ]
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__Type"
          "description" => """
            The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n
            \n
            Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.
            """
          "fields" => [
            [
              "name" => "kind"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "ENUM"
                  "name" => "__TypeKind"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "description"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "fields"
              "description" => null
              "args" => [
                [
                  "name" => "includeDeprecated"
                  "description" => null
                  "type" => [
                    "kind" => "SCALAR"
                    "name" => "Boolean"
                    "ofType" => null
                  ]
                  "defaultValue" => "false"
                ]
              ]
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "NON_NULL"
                  "name" => null
                  "ofType" => [
                    "kind" => "OBJECT"
                    "name" => "__Field"
                    "ofType" => null
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "interfaces"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "NON_NULL"
                  "name" => null
                  "ofType" => [
                    "kind" => "OBJECT"
                    "name" => "__Type"
                    "ofType" => null
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "possibleTypes"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "NON_NULL"
                  "name" => null
                  "ofType" => [
                    "kind" => "OBJECT"
                    "name" => "__Type"
                    "ofType" => null
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "enumValues"
              "description" => null
              "args" => [
                [
                  "name" => "includeDeprecated"
                  "description" => null
                  "type" => [
                    "kind" => "SCALAR"
                    "name" => "Boolean"
                    "ofType" => null
                  ]
                  "defaultValue" => "false"
                ]
              ]
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "NON_NULL"
                  "name" => null
                  "ofType" => [
                    "kind" => "OBJECT"
                    "name" => "__EnumValue"
                    "ofType" => null
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "inputFields"
              "description" => null
              "args" => [
                [
                  "name" => "includeDeprecated"
                  "description" => null
                  "type" => [
                    "kind" => "SCALAR"
                    "name" => "Boolean"
                    "ofType" => null
                  ]
                  "defaultValue" => "false"
                ]
              ]
              "type" => [
                "kind" => "LIST"
                "name" => null
                "ofType" => [
                  "kind" => "NON_NULL"
                  "name" => null
                  "ofType" => [
                    "kind" => "OBJECT"
                    "name" => "__InputValue"
                    "ofType" => null
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "ofType"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "OBJECT"
                "name" => "__Type"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "ENUM"
          "name" => "__TypeKind"
          "description" => "An enum describing what kind of type a given `__Type` is."
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => [
            [
              "name" => "SCALAR"
              "description" => "Indicates this type is a scalar."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "OBJECT"
              "description" => "Indicates this type is an object. `fields` and `interfaces` are valid fields."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INTERFACE"
              "description" => "Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "UNION"
              "description" => "Indicates this type is a union. `possibleTypes` is a valid field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "ENUM"
              "description" => "Indicates this type is an enum. `enumValues` is a valid field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INPUT_OBJECT"
              "description" => "Indicates this type is an input object. `inputFields` is a valid field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "LIST"
              "description" => "Indicates this type is a list. `ofType` is a valid field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "NON_NULL"
              "description" => "Indicates this type is a non-null. `ofType` is a valid field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__Field"
          "description" => "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type."
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "description"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "args"
              "description" => null
              "args" => [
                [
                  "name" => "includeDeprecated"
                  "description" => null
                  "type" => [
                    "kind" => "SCALAR"
                    "name" => "Boolean"
                    "ofType" => null
                  ]
                  "defaultValue" => "false"
                ]
              ]
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "LIST"
                  "name" => null
                  "ofType" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "OBJECT"
                      "name" => "__InputValue"
                      "ofType" => null
                    ]
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "type"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "__Type"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "isDeprecated"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "deprecationReason"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__InputValue"
          "description" => "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value."
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "description"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "type"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "OBJECT"
                  "name" => "__Type"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "defaultValue"
              "description" => "A GraphQL-formatted string representing the default value for this input value."
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "isDeprecated"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "deprecationReason"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__EnumValue"
          "description" => "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string."
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "description"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "isDeprecated"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "deprecationReason"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "OBJECT"
          "name" => "__Directive"
          "description" => """
            A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n
            \n
            In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
            """
          "fields" => [
            [
              "name" => "name"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "String"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "description"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "isRepeatable"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "locations"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "LIST"
                  "name" => null
                  "ofType" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "ENUM"
                      "name" => "__DirectiveLocation"
                      "ofType" => null
                    ]
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "args"
              "description" => null
              "args" => []
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "LIST"
                  "name" => null
                  "ofType" => [
                    "kind" => "NON_NULL"
                    "name" => null
                    "ofType" => [
                      "kind" => "OBJECT"
                      "name" => "__InputValue"
                      "ofType" => null
                    ]
                  ]
                ]
              ]
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "inputFields" => null
          "interfaces" => []
          "enumValues" => null
          "possibleTypes" => null
        ]
        [
          "kind" => "ENUM"
          "name" => "__DirectiveLocation"
          "description" => "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies."
          "fields" => null
          "inputFields" => null
          "interfaces" => null
          "enumValues" => [
            [
              "name" => "QUERY"
              "description" => "Location adjacent to a query operation."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "MUTATION"
              "description" => "Location adjacent to a mutation operation."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "SUBSCRIPTION"
              "description" => "Location adjacent to a subscription operation."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "FIELD"
              "description" => "Location adjacent to a field."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "FRAGMENT_DEFINITION"
              "description" => "Location adjacent to a fragment definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "FRAGMENT_SPREAD"
              "description" => "Location adjacent to a fragment spread."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INLINE_FRAGMENT"
              "description" => "Location adjacent to an inline fragment."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "VARIABLE_DEFINITION"
              "description" => "Location adjacent to a variable definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "SCHEMA"
              "description" => "Location adjacent to a schema definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "SCALAR"
              "description" => "Location adjacent to a scalar definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "OBJECT"
              "description" => "Location adjacent to an object type definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "FIELD_DEFINITION"
              "description" => "Location adjacent to a field definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "ARGUMENT_DEFINITION"
              "description" => "Location adjacent to an argument definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INTERFACE"
              "description" => "Location adjacent to an interface definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "UNION"
              "description" => "Location adjacent to a union definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "ENUM"
              "description" => "Location adjacent to an enum definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "ENUM_VALUE"
              "description" => "Location adjacent to an enum value definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INPUT_OBJECT"
              "description" => "Location adjacent to an input object type definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
            [
              "name" => "INPUT_FIELD_DEFINITION"
              "description" => "Location adjacent to an input object field definition."
              "isDeprecated" => false
              "deprecationReason" => null
            ]
          ]
          "possibleTypes" => null
        ]
      ]
      "directives" => [
        [
          "name" => "include"
          "description" => "Directs the executor to include this field or fragment only when the `if` argument is true."
          "locations" => [
            "FIELD"
            "FRAGMENT_SPREAD"
            "INLINE_FRAGMENT"
          ]
          "args" => [
            [
              "name" => "if"
              "description" => "Included when true."
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
        ]
        [
          "name" => "skip"
          "description" => "Directs the executor to skip this field or fragment when the `if` argument is true."
          "locations" => [
            "FIELD"
            "FRAGMENT_SPREAD"
            "INLINE_FRAGMENT"
          ]
          "args" => [
            [
              "name" => "if"
              "description" => "Skipped when true."
              "type" => [
                "kind" => "NON_NULL"
                "name" => null
                "ofType" => [
                  "kind" => "SCALAR"
                  "name" => "Boolean"
                  "ofType" => null
                ]
              ]
              "defaultValue" => null
            ]
          ]
        ]
        [
          "name" => "deprecated"
          "description" => "Marks an element of a GraphQL schema as no longer supported."
          "locations" => [
            "FIELD_DEFINITION"
            "ENUM_VALUE"
            "ARGUMENT_DEFINITION"
            "INPUT_FIELD_DEFINITION"
          ]
          "args" => [
            [
              "name" => "reason"
              "description" => "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/)."
              "type" => [
                "kind" => "SCALAR"
                "name" => "String"
                "ofType" => null
              ]
              "defaultValue" => ""No longer supported""
            ]
          ]
        ]
      ]
    ]
  ]
]
401 May 5, 2025 00:03 c0fe1e
# Time Info
200 May 4, 2025 20:53 schema: default db744f
# Time Info
1 43 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 19:54 schema: default c9b608
# Time Info
1 55 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 18:55 schema: default bedea3
# Time Info
1 53 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 17:56 schema: default 88747c
# Time Info
1 51 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 16:57 schema: default 29a1f8
# Time Info
1 41 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 15:58 schema: default 0a6944
# Time Info
1 37 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 14:59 schema: default 689750
# Time Info
1 43 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 14:00 schema: default 42bc2d
# Time Info
1 40 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 13:01 schema: default 13eb4b
# Time Info
1 42 ms
mutation refreshToken(...) {
refreshToken(...)
}
200 May 4, 2025 12:04 schema: default 9bcd24
# Time Info
1 68 ms
query Campaign(...) {
campaign(...)
}
200 May 4, 2025 12:04 schema: default b2c878
# Time Info
1 28 ms
query Campaign(...) {
campaign(...)
}
200 May 4, 2025 12:04 schema: default ade408
# Time Info
1 37 ms
query Campaigns(...) {
campaigns(...)
}
200 May 4, 2025 12:04 schema: default 4db802
# Time Info
1 154 ms
mutation campaignCreate(...) {
campaignCreate(...)
}
200 May 4, 2025 12:03 schema: default 4914c6
# Time Info
1 24 ms
query Applications(...) {
applications(...)
}
200 May 4, 2025 12:02 schema: default be1fc7
# Time Info
1 31 ms
query Projects(...) {
projects(...)
}
200 May 4, 2025 12:02 schema: default 460052
# Time Info
1 23 ms
query Me(...) {
me(...)
}
200 May 4, 2025 12:02 schema: default f5b268
# Time Info
1 28 ms
query Me(...) {
me(...)
}
200 May 4, 2025 12:02 schema: default 30cea8
# Time Info
1 697 ms
mutation Login(...) {
login(...)
}

Schema: default

schema {
  query: Query
  mutation: Mutation
}

type Query {
  id: String
  countries: [Country]
}

type Country {
  code: String!
  name: String!
}

type Mutation {
  "Refresh tokens"
  refreshToken(
    "Refresh Token"
    token: String!
  ): AuthPayload!

  "User login with email and password"
  login(input: LoginInput!): AuthPayload!

  "User reset password"
  resetPassword(input: ResetPasswordInput!): Boolean!

  "User registration with email and password"
  signup(input: RegistrationUserInput!): AuthPayload!

  "User update password"
  updatePassword(input: UpdatePasswordInput!): Boolean!
}

type AuthPayload {
  token: String!
  refreshToken: String!
  user: AmplyUser!
  organization: Organization!
}

type AmplyUser {
  email: String
  name: String
  role: String
  status: String
  avatar: String
}

type Organization {
  name: String!
  id: UUID!
  users: [AmplyUser]
  projectsCount: Int
  projects: [Project]
  logo: String
}

scalar UUID

type Project {
  name: String!
  id: UUID!
  applications: [Application]
  image: String
}

type Application {
  id: UUID!
  bundleId: String!
  name: String!
  image: String!
  platform: String!
  project: Project!
  apiKeys: [ApiKey]
}

type ApiKey {
  public: String!
  secret: String!
  application: Application!
  lastUsed: DateTime
}

scalar DateTime

input LoginInput {
  email: String!
  password: String!
}

input ResetPasswordInput {
  email: String!
}

input RegistrationUserInput {
  email: String!
  password: String!
  organization: String!
  name: String!
}

input UpdatePasswordInput {
  token: String!
  newPassword: String!
  newPasswordRepeat: String!
}