Waiting for engine...
Skip to main content

spaceArtifactListings

Fetch tags by their title, description, artifacts ids, or categories. The spaceArtifactListings query accepts SpaceArtifactListingSearchInput as input.

An example of the request is as follows:

query {
spaceArtifactListings(
input: {
pageIndex: 0
pageSize: 1
spaceId: "space guid"
artifactListingCategories: [
{ artifactListingTags: ["tag1guid", "tag2guid", "tag3guid"] }
{ artifactListingTags: ["tag_1_guid", "tag_2_guid", "tag_3_guid"] }
]
submissionStatus: [
{
status: [
{ recipeSubmissionStatus: { status: UNDER_REVIEW } }
{ recipeSubmissionStatus: { status: ACTION_NEEDED } }
]
spaceArtifactType: RECIPE
}
]
}
) {
numberOfResults
currentPageSize
spaceArtifactsData {
id
spaceId
createdDate
createdByAccountId
createdByUserId
modifiedByUserId
modifiedByAccountId
lastModifiedDate
spaceArtifact {
spaceArtifactType
spaceArtifactId
}
spaceArtifactListingMetaData {
title
description
expectedPublishingDate
demoLink
supportFormLink
demoFile {
imageUrl
altText
}
communityArticleHelpLink
communityArticleHelpFile {
imageUrl
altText
}
keyFeatures
detailedContent
displayOrder
featured
displayRecipeCallOut
actualPublishingDate
discoverLink
difficultyLevel
suggestedTags
bannerLogoImageOne {
imageUrl
altText
}
bannerLogoImageTwo {
imageUrl
altText
}
bannerLogoImageThree {
imageUrl
altText
}
supportForm {
imageUrl
altText
}
}
submissionStatus {
__typename
... on RecipeSubmissionStatus {
status
}
}
lastSubmittedDate
reviewerUserId
statusLastModifiedDate
tags {
spaceArtifactListingId
artifactListingTagId
artifactListingTagName
createdDate
createdBy
}
publisher {
id
}
topics {
topicName
topicStatus
hasNewNote
firstNewNote
admin
}
}
}
}

spaceArtifactListings(
input: SpaceArtifactListingSearchInput!
): SpaceArtifactListingQueryResponse

Arguments

spaceArtifactListings.input ● SpaceArtifactListingSearchInput! non-null input catalog-service

Type

SpaceArtifactListingQueryResponse object catalog-service

Represents a paginated response containing the total result count, current page size, and a list of space artifact listings.

On this Page