changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "enum_count": {
+ "description": "Number of enum types in schema",
+ "type": "integer"
+ },
+ "enums": {
+ "description": "List of enum types",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Enum type name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "values": {
+ "description": "Enum value names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "object_count": {
+ "description": "Number of object types in schema",
+ "type": "integer"
+ },
+ "objects": {
+ "description": "List of object types with fields",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Type description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "fields": {
+ "description": "Fields in this type",
+ "items": {
+ "properties": {
+ "args": {
+ "description": "Field arguments",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Argument name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Argument type signature",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "description": {
+ "description": "Field description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Field name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Field type signature (flattened)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Type name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query_type": {
+ "description": "Root query type name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "subgraph_id": {
+ "description": "Subgraph deployment ID",
+ "type": "string"
+ }
+ },
+ "required": [
+ "subgraph_id",
+ "query_type",
+ "object_count",
+ "enum_count",
+ "objects",
+ "enums"
+ ],
+ "type": "object"
+}