UNPKG

@commercetools-docs/gatsby-theme-api-docs

Version:
22 lines (19 loc) 393 B
import { useStaticQuery, graphql } from 'gatsby'; export const useTypeLocationOverrides = () => { const queryResult = useStaticQuery( graphql` { allTypeLocationsYaml { nodes { api locations { type href } } } } ` ); return queryResult.allTypeLocationsYaml.nodes; };