Logo of FrontifyDeveloper portalArrow to the right
GraphQL reference
Query field

catalog(id: ID!):Catalog
Beta

Retrieve a Catalog by its id.

Arguments
id: ID!
Beta

Catalog id.

Fields of Catalog
id:ID!
Beta

Catalog id.

name:String!
Beta

name of the Catalog.

createdAt:DateTime!
Beta

DateTime of the Catalog creation.

updatedAt:DateTime
Beta

DateTime of the Catalog last update.

rows(
Beta
limit: Int = 25
page: Int = 1

rows of the Catalog.

columns(
Beta
limit: Int = 100
page: Int = 1

columns of the Catalog.

window(
Beta
columns: CatalogWindowPaginationInput! = {limit: 10, page: 1}
rows: CatalogWindowPaginationInput! = {limit: 25, page: 1}

A rectangular page of catalog data whose cells correspond to the selected columns. One catalog window can contain at most 2,500 cell coordinates.

primaryColumn:CatalogColumn
Beta

Primary CatalogColumn of the Catalog.