
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@shopify/admin-graphql-api-utilities
Advanced tools
A set of utilities to use when consuming Shopify’s admin GraphQL API
@shopify/admin-graphql-api-utilitiesA set of utilities to use when consuming Shopify’s admin GraphQL API.
$ yarn add @shopify/admin-graphql-api-utilities
parseGidType(gid: string): stringGiven a Gid string, parse out the type.
import {parseGidType} from '@shopify/admin-graphql-api-utilities';
parseGidType('gid://shopify/Customer/12345');
// → 'Customer'
function parseGid(gid: string): stringGiven a Gid string, parse out the id.
import {parseGid} from '@shopify/admin-graphql-api-utilities';
parseGid('gid://shopify/Customer/12345');
// → '12345'
function parseGidWithParams(gid: string): ParsedGidGiven a Gid string, parse out the id and its params.
import {parseGidWithParams} from '@shopify/admin-graphql-api-utilities';
parseGidWithParams('gid://shopify/Customer/12345?sessionId=123&foo=bar');
// → {
// id: '12345',
// params: {sessionId: '123', foo: 'bar'}
// }
function composeGidFactory(namespace: string): FunctionCreate a new composeGid with a given namespace instead of the default shopify namespace.
import {composeGidFactory} from '@shopify/admin-graphql-api-utilities';
const composeGid = composeGidFactory('CustomApp');
composeGid('Product', '123');
// → 'gid://CustomApp/Product/123'
function composeGid(key: string, id: number | string, params: Record<string, string> = {}): stringGiven a key and id, compose a Gid string.
import {composeGid} from '@shopify/admin-graphql-api-utilities';
composeGid('Customer', 12345);
// → 'gid://shopify/Customer/12345'
composeGid('Customer', '67890', {foo: 'bar'});
// → 'gid://shopify/Customer/67890?foo=bar'
function nodesFromEdges(edges)Given an array of edges, return the nodes.
import {nodesFromEdges} from '@shopify/admin-graphql-api-utilities';
nodesFromEdges([
{node: {id: '1', title: 'title one'}},
{node: {id: '2', title: 'title two'}},
]);
// → [{id: '1', title: 'title one'}, {id: '2', title: 'title two'}]
function keyFromEdges(edges, key)Given an array of edges, return a new array of only the specific key from those nodes.
import {keyFromEdges} from '@shopify/admin-graphql-api-utilities';
keyFromEdges(
[
{node: {id: '1', title: 'title one'}},
{node: {id: '2', title: 'title two'}},
],
'title',
);
// → ['title one', 'title two']
FAQs
A set of utilities to use when consuming Shopify’s admin GraphQL API
The npm package @shopify/admin-graphql-api-utilities receives a total of 7,648 weekly downloads. As such, @shopify/admin-graphql-api-utilities popularity was classified as popular.
We found that @shopify/admin-graphql-api-utilities demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 24 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.