query getContentStream( $sectionId: Int $limit: Int $skip: Int $includeContentTypes: [ContentType!] $issueId: Int $relatedToId: Int $authorId: Int $scheduleOption: Int $requirePrimaryImage: Boolean $excludeContentIds: [Int!] $includeContentIds: [Int!] $sectionBubbling: Boolean $sortField: ContentSortField $sortOrder: SortOrder $publishedBefore: Date $publishedAfter: Date $randomizeResults: Boolean $teaserFallback: Boolean $teaserMaxLength: Int $startDateBefore: Date $startDateAfter: Date ) { getContentStream( input: { sectionId: $sectionId includeContentTypes: $includeContentTypes excludeContentIds: $excludeContentIds includeContentIds: $includeContentIds issueId: $issueId authorId: $authorId relatedTo: { id: $relatedToId } scheduleOption: $scheduleOption startDateBefore: $startDateBefore startDateAfter: $startDateAfter requirePrimaryImage: $requirePrimaryImage sectionBubbling: $sectionBubbling publishedBefore: $publishedBefore publishedAfter: $publishedAfter sort: { field: $sortField, order: $sortOrder } pagination: { limit: $limit, skip: $skip } randomizeResults: $randomizeResults } ) { edges { node { id type name shortName teaser(input: { useFallback: $teaserFallback, maxLength: $teaserMaxLength }) published publishedDate labels blueConic leaders primaryImage { name src credit alt isLogo displayName } primarySection { alias name } siteContext { path } company { id name fullName alias } userRegistration { isRequired accessLevels } ... on Authorable { authors { edges { node { name path } } } } ... on ContentEvent { startDate endDate } ... on ContentWebinar { startDate } membership { id } } } } }