Skip to main content

BlogAuthor

type BlogAuthor implements Node {
id: ID!
createdAt: Time!
updatedAt: Time!
companyID: String!
name: String!
slug: String!
biography: String
profilePhoto: String
metadata: BlogMetadata
blogID: ID!
blog: Blog!
blogPosts: [BlogPost!]
}

Fields

BlogAuthor.id ● ID! non-null scalar

BlogAuthor.createdAt ● Time! non-null scalar

BlogAuthor.updatedAt ● Time! non-null scalar

BlogAuthor.companyID ● String! non-null scalar

BlogAuthor.name ● String! non-null scalar

BlogAuthor.slug ● String! non-null scalar

BlogAuthor.biography ● String scalar

BlogAuthor.profilePhoto ● String scalar

BlogAuthor.metadata ● BlogMetadata scalar

BlogAuthor.blogID ● ID! non-null scalar

BlogAuthor.blog ● Blog! non-null object

BlogAuthor.blogPosts ● [BlogPost!] list object

Interfaces

Node interface

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

Returned By

createBlogAuthor mutation ● getBlogAuthor query ● updateBlogAuthor mutation

Member Of

BlogAuthorEdge object ● BlogPost object