For the complete documentation index, see llms.txt. This page is also available as Markdown.

view

Graphql fields and variables for the view query

Defines table views with conditions and column configurations

Scope required: standard:read

For a complete list of possible response fields see the View type.

query view ($id: ID, $code: String, $format: String) {
  view (id: $id, code: $code, format: $format) {
    columns
    conditions
    id
    isDefault
    name
    obj
    sortBy
    sortOrder
    userId
  }
}

Arguments

Name
Type
Description

id

ID

code

String

format

String

Response

Last updated

Was this helpful?