Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
GetFieldLineagesOutput
Paginated response from the executed query or mutation
type GetFieldLineagesOutput {
greatestId: String
nbPerPage: Int!
page: Int
totalCount: Int!
data: [FieldLineage!]!
}
Fields
GetFieldLineagesOutput.greatestId ● String scalar general
The greatest id returned, to pass as the next 'greaterThanId' when using cursor-based pagination. Returned only when page is not used.
GetFieldLineagesOutput.nbPerPage ● Int! non-null scalar general
Number of entities to return per page
GetFieldLineagesOutput.page ● Int scalar general
The page number (start at 0). Returned only when greaterThanId is not used.
GetFieldLineagesOutput.totalCount ● Int! non-null scalar general
The total number of entities
GetFieldLineagesOutput.data ● [FieldLineage!]! non-null object field-lineages
Field containing the response from the executed query or mutation
Example
{
"greatestId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"nbPerPage": 50,
"page": 0,
"totalCount": 100,
"data": [
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"lineageType": "AUTOMATIC",
"refreshedAt": 1758555879800,
"childColumnId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"childDashboardId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"childDashboardFieldId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"parentColumnId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"parentDashboardFieldId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"createdAt": 1758555879800
}
]
}
Returned By
getFieldLineagesquery