--- title: menusCount - GraphQL Admin description: Count of menus. api_version: unstable api_name: admin source_url: html: 'https://shopify.dev/docs/api/admin-graphql/unstable/queries/menusCount' md: 'https://shopify.dev/docs/api/admin-graphql/unstable/queries/menusCount.md' --- # menus​Count query Requires `read_online_store_navigation` access scope and Shopify approved scope. Count of menus. ## Arguments * limit [Int](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/Int) The upper bound on count value before returning a result. Use `null` to have no limit. * query [String](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) A filter made up of terms, connectives, modifiers, and comparators. You can apply one or more filters to a query. Learn more about [Shopify API search syntax](https://shopify.dev/api/usage/search-syntax). * * default string * id id * title string - Filter by a case-insensitive search of multiple fields in a document. - Example: * `query=Bob Norman` * `query=title:green hoodie` Filter by `id` range. - Example: * `id:1234` * `id:>=1234` * `id:<=1234` *** ## Possible returns * Count [Count](https://shopify.dev/docs/api/admin-graphql/unstable/objects/Count) Details for count of elements. *** ## Examples * ### menusCount reference ## Query Reference ```graphql { menusCount { # menusCount fields } } ```