Skip to main content

Blog

type Blog implements Node {
listingsTemplate: CodeFile
blogPostTemplate: CodeFile
id: ID!
createdAt: Time!
updatedAt: Time!
companyID: String!
name: String!
pageTitle: String
metaTitle: String
metaDescription: String
metaKeywords: [String!]
listingsTemplateID: ID!
blogPostTemplateID: ID!
listingsPerPage: Int!
metadata: BlogMetadata
domainPath: DomainPath!
blogPosts(
after: Cursor
first: Int
before: Cursor
last: Int
orderBy: BlogPostOrder
where: BlogPostWhereInput
): BlogPostConnection!
blogTags(
after: Cursor
first: Int
before: Cursor
last: Int
orderBy: BlogTagOrder
where: BlogTagWhereInput
): BlogTagConnection!
blogAuthors(
after: Cursor
first: Int
before: Cursor
last: Int
orderBy: BlogAuthorOrder
where: BlogAuthorWhereInput
): BlogAuthorConnection!
}

Fields

Blog.listingsTemplate ● CodeFile object

Blog.blogPostTemplate ● CodeFile object

Blog.id ● ID! non-null scalar

Blog.createdAt ● Time! non-null scalar

Blog.updatedAt ● Time! non-null scalar

Blog.companyID ● String! non-null scalar

Blog.name ● String! non-null scalar

Blog.pageTitle ● String scalar

Blog.metaTitle ● String scalar

Blog.metaDescription ● String scalar

Blog.metaKeywords ● [String!] list scalar

Blog.listingsTemplateID ● ID! non-null scalar

Blog.blogPostTemplateID ● ID! non-null scalar

Blog.listingsPerPage ● Int! non-null scalar

Blog.metadata ● BlogMetadata scalar

Blog.domainPath ● DomainPath! non-null object

Blog.blogPosts ● BlogPostConnection! non-null object

Blog.blogPosts.after ● Cursor scalar

Returns the elements in the list that come after the specified cursor.

Blog.blogPosts.first ● Int scalar

Returns the first n elements from the list.

Blog.blogPosts.before ● Cursor scalar

Returns the elements in the list that come before the specified cursor.

Blog.blogPosts.last ● Int scalar

Returns the last n elements from the list.

Blog.blogPosts.orderBy ● BlogPostOrder input

Ordering options for BlogPosts returned from the connection.

Blog.blogPosts.where ● BlogPostWhereInput input

Filtering options for BlogPosts returned from the connection.

Blog.blogTags ● BlogTagConnection! non-null object

Blog.blogTags.after ● Cursor scalar

Returns the elements in the list that come after the specified cursor.

Blog.blogTags.first ● Int scalar

Returns the first n elements from the list.

Blog.blogTags.before ● Cursor scalar

Returns the elements in the list that come before the specified cursor.

Blog.blogTags.last ● Int scalar

Returns the last n elements from the list.

Blog.blogTags.orderBy ● BlogTagOrder input

Ordering options for BlogTags returned from the connection.

Blog.blogTags.where ● BlogTagWhereInput input

Filtering options for BlogTags returned from the connection.

Blog.blogAuthors ● BlogAuthorConnection! non-null object

Blog.blogAuthors.after ● Cursor scalar

Returns the elements in the list that come after the specified cursor.

Blog.blogAuthors.first ● Int scalar

Returns the first n elements from the list.

Blog.blogAuthors.before ● Cursor scalar

Returns the elements in the list that come before the specified cursor.

Blog.blogAuthors.last ● Int scalar

Returns the last n elements from the list.

Blog.blogAuthors.orderBy ● BlogAuthorOrder input

Ordering options for BlogAuthors returned from the connection.

Blog.blogAuthors.where ● BlogAuthorWhereInput input

Filtering options for BlogAuthors returned from the connection.

Interfaces

Node interface

An object with an ID. Follows the Relay Global Object Identification Specification

Returned By

createBlog mutation ● getBlog query ● updateBlog mutation

Member Of

BlogAuthor object ● BlogEdge object ● BlogPost object ● BlogTag object ● DomainPath object