Blogs Snippets

query blogs {
  blogs(feed:blogs) {
    ... on Blog {
      id
      title
      updated
      published
      author {
        name
        email
        userid
      }
    }
  }
}
query featuredblogs {
  blogs(feed: featuredblogs) {
    ... on Blog {
      id
      title
      published
      updated
      recommendationCount
      author {
        name
        userid
        email
      }
    }
  }
}
query entries {
  blogs(feed: entries) {
    ... on BlogEntry {
      id
      updated
      author {
        name
        email
        userid
      }
      contributor {
        name
        email
        userid
      }
      summary
      summaryType
      published
      updated
      recommendationCount
      commentCount
      viewCount
      recommendations {
        id
        updated
        contributor {
          name
          email
          userid
        }
      }
      comments {
        id
        title
        content
        inReplyTo
        canEditComment
        canDeleteComment
        edited
        recommendationCount
        author {
          name
          email
          userid
        }
        contributor {
          name
          email
          userid
        }
      }
    }
  }
}
query featured {
  blogs(feed: featured) {
    ... on BlogEntry {
      id
      title
      published
      updated
      recommendationCount
      content
      contentType
    }
  }
}
query comments {
  blogs(feed: comments) {
    ... on Comment {
			id
      title
      content
      contentType
      communityUuid
      canEditComment
      canDeleteComment
      updated
      published
      inReplyTo
      contributor {
        name
        email
        userid
      }
      author {
        name
        email
        userid
      }
      recommendationCount
      moderation
      edited
    }
  }
}
query recommended {
  blogs(feed:recommended) {
    ... on BlogEntry {
      id
      title
      author {
        name
        email
        userid
        userState
      }
      communityUuid
      published
      updated
      content
      contentType
      summary
      summaryType
      comments {
        id
        title
        content
      }
    }
  }
}