Query
query TenantFieldSchemas {
tenantFieldSchemas {
edges {
cursor
node {
id
source
externalFieldId
label
type
options
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"tenantFieldSchemas": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"source": "string",
"externalFieldId": "id",
"label": "string",
"type": "STRING_TYPE",
"options": [
"string"
]
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Queries
tenantFieldSchemas
Returns the list of tenant field schemas defined in the workspace. Use the source and isVisible filters to narrow results. Supports cursor-based pagination.
QUERY
tenantFieldSchemas(filters: TenantFieldSchemasFilter, first: Int, after: String, last: Int, before: String): TenantFieldSchemaConnection!Arguments
filters
first
Int
after
String
last
Int
before
String
Returns
edges
pageInfo
Query
query TenantFieldSchemas {
tenantFieldSchemas {
edges {
cursor
node {
id
source
externalFieldId
label
type
options
}
}
pageInfo {
hasPreviousPage
hasNextPage
startCursor
endCursor
}
}
}Response
{
"data": {
"tenantFieldSchemas": {
"edges": [
{
"cursor": "string",
"node": {
"id": "id",
"source": "string",
"externalFieldId": "id",
"label": "string",
"type": "STRING_TYPE",
"options": [
"string"
]
}
}
],
"pageInfo": {
"hasPreviousPage": true,
"hasNextPage": true,
"startCursor": "string",
"endCursor": "string"
}
}
}
}Was this page helpful?

