UNPKG

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

Version:
23 lines (20 loc) 430 B
import { useStaticQuery, graphql } from 'gatsby'; export const useEndpointLocationOverrides = () => { const queryResult = useStaticQuery( graphql` { allEndpointLocationsYaml { nodes { api locations { resource method href } } } } ` ); return queryResult.allEndpointLocationsYaml.nodes; };