Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

How to filter Collections based on Metafields?

How to filter Collections based on Metafields?

devAtAdcuratio
Visitor
1 0 1

I want to achieve something like this?

 

query getCollections {
    collections(query: metafield(namespace:"Banner" AND key:"isBanner" AND value:"true")) {
        edges {
            node {
                id
                title
            }
        }
    }
}

 

Replies 0 (0)