Store Page by Slug

storePageBySlug #

storePageBySlug(slug: String) PStorePage

Example #

query storePageBySlug($slug: String!){
  storePageBySlug(slug: $slug) {
    title
    slug
    content
    isPublished
    views
    createdAt
    updatedAt
  }
}

Try It Now