@commercetools-docs/gatsby-theme-api-docs
Version:
Gatsby theme for commercetools documentation API
23 lines (20 loc) • 430 B
JavaScript
import { useStaticQuery, graphql } from 'gatsby';
export const useEndpointLocationOverrides = () => {
const queryResult = useStaticQuery(
graphql`
{
allEndpointLocationsYaml {
nodes {
api
locations {
resource
method
href
}
}
}
}
`
);
return queryResult.allEndpointLocationsYaml.nodes;
};