getCollectionsByIdsQuery top-level constant

String const getCollectionsByIdsQuery

Query to get collections by ids

Implementation

const String getCollectionsByIdsQuery = r'''
query getCollectionsByIds($ids: [ID!]!){
  nodes(ids: $ids) {
    ... on Collection {
      id
      handle
      descriptionHtml
      image {
        src
        originalSrc
        id
        altText
      }
      title
      updatedAt
    }
  }
}''';