JFrog · Schema

GraphQLRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
query string GraphQL query string
variables object GraphQL query variables
operationName string Named operation to execute when query contains multiple operations
View JSON Schema on GitHub

JSON Schema

jfrog-graphqlrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphQLRequest",
  "title": "GraphQLRequest",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "GraphQL query string"
    },
    "variables": {
      "type": "object",
      "additionalProperties": true,
      "description": "GraphQL query variables"
    },
    "operationName": {
      "type": "string",
      "description": "Named operation to execute when query contains multiple operations"
    }
  },
  "required": [
    "query"
  ]
}