For the complete documentation index, see llms.txt. This page is also available as Markdown.

List of all multimedia in stream

This query will return all multimedia in PIM and extra info about them.

query multimedia {
  multimediaStream {
    pageInfo {
      hasNextPage
      endCursor
    }
    edges {
      __typename
      node {
        name
        path
        alt {
          value
          language
        }
        extension
        mime
        size
        folder {
          name
        }
        url
      }
    }
  }
}

Last updated

Was this helpful?