Skip to main content

Summary

No description

type Summary implements Node {
nodeId: ID!
id: String!
workspaceId: String
accordId: String
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
internal: Boolean!
title: String
bannerImageUrl: String
order: Int
accord: Accord
workspace: Workspace
sectionsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [SectionsOrderBy!] = [PRIMARY_KEY_ASC]
condition: SectionCondition
filter: SectionFilter
): SectionsConnection!
sections(
first: Int
offset: Int
orderBy: [SectionsOrderBy!]
condition: SectionCondition
filter: SectionFilter
): [Section!]!
}

Fields

Summary.nodeId ● ID! non-null scalar

A globally unique identifier. Can be used in various places throughout the system to identify this single value.

Summary.id ● String! non-null scalar

Summary.workspaceId ● String scalar

Summary.accordId ● String scalar

Summary.version ● Int! non-null scalar

Summary.deletedAt ● Datetime scalar

Summary.updatedAt ● Datetime! non-null scalar

Summary.createdAt ● Datetime! non-null scalar

Summary.internal ● Boolean! non-null scalar

Summary.title ● String scalar

Summary.order ● Int scalar

Summary.accord ● Accord object

Reads a single Accord that is related to this Summary.

Summary.workspace ● Workspace object

Reads a single Workspace that is related to this Summary.

Summary.sectionsConnection ● SectionsConnection! non-null object

Reads and enables pagination through a set of Section.

Summary.sectionsConnection.first ● Int scalar

Only read the first n values of the set.

Summary.sectionsConnection.last ● Int scalar

Only read the last n values of the set.

Summary.sectionsConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

Summary.sectionsConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

Summary.sectionsConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

Summary.sectionsConnection.orderBy ● [SectionsOrderBy!] list enum

The method to use when ordering Section.

Summary.sectionsConnection.condition ● SectionCondition input

A condition to be used in determining which values should be returned by the collection.

Summary.sectionsConnection.filter ● SectionFilter input

A filter to be used in determining which values should be returned by the collection.

Summary.sections ● [Section!]! non-null object

Reads and enables pagination through a set of Section.

Summary.sections.first ● Int scalar

Only read the first n values of the set.

Summary.sections.offset ● Int scalar

Skip the first n values.

Summary.sections.orderBy ● [SectionsOrderBy!] list enum

The method to use when ordering Section.

Summary.sections.condition ● SectionCondition input

A condition to be used in determining which values should be returned by the collection.

Summary.sections.filter ● SectionFilter input

A filter to be used in determining which values should be returned by the collection.

Interfaces

Node interface

An object with a globally unique ID.

Returned By

summaries query ● summary query ● summaryByNodeId query

Member Of

Accord object ● CopySummaryToAccordPayload object ● CreateSectionPayload object ● CreateSummaryPayload object ● DeleteSectionPayload object ● DeleteSummaryPayload object ● RecoverSectionPayload object ● RecoverSummaryPayload object ● Section object ● SummariesConnection object ● SummariesEdge object ● UpdateSectionPayload object ● UpdateSummaryPayload object ● UpgradeSummaryPayload object ● UpsertSectionPayload object ● UpsertSummaryPayload object ● Workspace object