Skip to main content

organization

columns and relationships of "organization"

type organization {
id: uuid!
name: String!
organizationConfiguration: organizationConfiguration
workspaces(
distinct_on: [workspace_select_column!]
limit: Int
offset: Int
order_by: [workspace_order_by!]
where: workspace_bool_exp
): [workspace!]!
}

Fields

organization.id ● uuid! non-null scalar

organization.name ● String! non-null scalar

organization.organizationConfiguration ● organizationConfiguration object

An object relationship

organization.workspaces ● [workspace!]! non-null object

An array relationship

organization.workspaces.distinct_on ● [workspace_select_column!] list enum

distinct select on columns

organization.workspaces.limit ● Int scalar

limit the number of rows returned

organization.workspaces.offset ● Int scalar

skip the first n rows. Use only with order_by

organization.workspaces.order_by ● [workspace_order_by!] list input

sort the rows by one or more columns

organization.workspaces.where ● workspace_bool_exp input

filter the rows returned

Returned By

organization_by_pk query ● organization_by_pk subscription ● organization_stream subscription ● organization query ● organization subscription

Member Of

organizationConfiguration object ● workspace object