Good day!
I’m learning how to work with metaobjects with Admin GraphQL API. At a first glance it looked as if I can search my metaobjects with “query” argument by any of my metaobject fields: https://shopify.dev/docs/api/admin-graphql/2024-04/queries/metaobjects
However, as I understand, only three built-in fields are supported for such queries: id, updated_at and display_name. Any other field I put in a query - I get “Invalid search field for this query” warning debug message.
Is that really so, or am I missing something? My Shopify plan gives me a limit of 128000 metaobjects to store. So how am I suppose to search my metaobjects by custom field value? Retrieving all of them and filtering on the client side doesn’t feel right at all.