OBJECT
Query
Every GraphQL schema has a root type for both queries and mutations. The query type defines GraphQL operations that retrieve data from Noticeable servers.
For more information, see "About queries".
link GraphQL Schema definition
- type Query {
- # Search an email subscription for the specified project ID and email address.
- #
- # Arguments
- # projectId: [Not documented]
- # email: [Not documented]
- (: ID!, : String!): EmailSubscription
- # Lookup the organization associated with the access token in use.
- : Organization
- # Lookup a post by project and post ID.
- #
- # Arguments
- # projectId: [Not documented]
- # postId: [Not documented]
- (
- : ID!,
- : ID!
- ): Post @deprecated( reason: "Use publication(...) instead of post(...)." )
- # Lookup a publication by ID.
- #
- # Arguments
- # projectId: [Not documented]
- # publicationId: [Not documented]
- (: ID!, : ID!): Publication
- # Lookup a publication comment by ID.
- #
- # Arguments
- # projectId: [Not documented]
- # commentId: [Not documented]
- (: ID!, : ID!): PublicationComment
- # List publication comments in the specified project given its ID.
- #
- # Arguments
- # projectId: [Not documented]
- # after: Returns the publication comments that come after the
- # specified cursor.
- # before: Returns the publication comments that come before the
- # specified cursor.
- # first: Returns the first _n_ publication comments.
- # last: Returns the last _n_ publication comments.
- (
- : ID!,
- : String,
- : String,
- : Int,
- : Int
- ): PublicationCommentConnection
- # Lookup a project given its ID.
- #
- # Arguments
- # projectId: [Not documented]
- (: ID): Project
- }
link Require by
This element is not required by anyone