Locations Metafields, Does it exsits?

Locations Metafields, Does it exsits?

billysafin
Visitor
2 0 0

Hey, 

This page states meta for locations are supported; however, when we checked the API document, no such info about it.

But then found it is under unstable.

 

Questions are

  1. is meta for locations supported through API?
  2. if supported then can you please share us the example or show us how to use?
  3. if not supported then why the news was published and also when can we expect

Best,

Billy

Replies 2 (2)

danloomer
Shopify Staff
11 5 4

Hi Billy,

 

Metafields on Locations are supported through the API, but only in the unstable version for now. 

 

In terms of examples there are a couple in the link you shared to the unstable GraphQL docs.

 

Like getting metafields attached to a location:

query LocationMetafields($ownerId: ID!) {
  location(id: $ownerId) {
    metafields(first: 3) {
      edges {
        node {
          namespace
          key
          value
        }
      }
    }
  }
}

 

If you want to set metafields on a location you can use the metafieldsSet mutation passing in the GID of a location as the ownerID.

 

Hope that helps!

To learn more visit the Shopify Help Center or the Community Blog.

billysafin
Visitor
2 0 0

hi Danloomer,

 

Thank you for your reply.

 

I also did some research and noticed metafields can be access through 2022-07 version but not able to place them. 

 

Do you know when such future will be release as a stable?