Skip to content

Commit

Permalink
deployed on Mon Aug 19 08:47:43 PDT 2024 by phil
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 committed Aug 19, 2024
1 parent 3dcdf4f commit 284851b
Show file tree
Hide file tree
Showing 13 changed files with 2,384 additions and 184 deletions.
1,248 changes: 1,174 additions & 74 deletions print.html

Large diffs are not rendered by default.

121 changes: 120 additions & 1 deletion reference/json-schema.html
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,15 @@ <h2 id="capabilitiesresponse"><a class="header" href="#capabilitiesresponse"><co
"$ref": "#/definitions/NestedFieldCapabilities"
}
]
},
"exists": {
"description": "Does the connector support EXISTS predicates",
"default": {},
"allOf": [
{
"$ref": "#/definitions/ExistsCapabilities"
}
]
}
}
},
Expand Down Expand Up @@ -310,6 +319,23 @@ <h2 id="capabilitiesresponse"><a class="header" href="#capabilitiesresponse"><co
}
}
},
"ExistsCapabilities": {
"title": "Exists Capabilities",
"type": "object",
"properties": {
"nested_collections": {
"description": "Does the connector support ExistsInCollection::NestedCollection",
"anyOf": [
{
"$ref": "#/definitions/LeafCapability"
},
{
"type": "null"
}
]
}
}
},
"MutationCapabilities": {
"title": "Mutation Capabilities",
"type": "object",
Expand Down Expand Up @@ -1352,6 +1378,37 @@ <h2 id="mutationrequest"><a class="header" href="#mutationrequest"><code>Mutatio
}
}
}
},
{
"type": "object",
"required": [
"column_name",
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"nested_collection"
]
},
"column_name": {
"type": "string"
},
"arguments": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Argument"
}
},
"field_path": {
"description": "Path to a nested collection via object columns",
"type": "array",
"items": {
"type": "string"
}
}
}
}
]
},
Expand Down Expand Up @@ -2370,6 +2427,37 @@ <h2 id="queryrequest"><a class="header" href="#queryrequest"><code>QueryRequest<
}
}
}
},
{
"type": "object",
"required": [
"column_name",
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"nested_collection"
]
},
"column_name": {
"type": "string"
},
"arguments": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Argument"
}
},
"field_path": {
"description": "Path to a nested collection via object columns",
"type": "array",
"items": {
"type": "string"
}
}
}
}
]
},
Expand Down Expand Up @@ -3389,6 +3477,37 @@ <h2 id="queryrequest-1"><a class="header" href="#queryrequest-1"><code>QueryRequ
}
}
}
},
{
"type": "object",
"required": [
"column_name",
"type"
],
"properties": {
"type": {
"type": "string",
"enum": [
"nested_collection"
]
},
"column_name": {
"type": "string"
},
"arguments": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Argument"
}
},
"field_path": {
"description": "Path to a nested collection via object columns",
"type": "array",
"items": {
"type": "string"
}
}
}
}
]
},
Expand Down Expand Up @@ -3889,7 +4008,7 @@ <h2 id="schemaresponse"><a class="header" href="#schemaresponse"><code>SchemaRes
]
},
"name": {
"description": "The name can refer to a primitive type or a scalar type",
"description": "The name can refer to a scalar or object type",
"type": "string"
}
}
Expand Down
Loading

0 comments on commit 284851b

Please sign in to comment.