UNPKG

@graphprotocol/graph-cli

Version:

CLI for building for and deploying to The Graph

11 lines (10 loc) 289 B
export const getSubgraphBasename = (name) => { const segments = name.split('/', 2); return segments[segments.length - 1]; }; export const formatSubgraphName = (slug) => { return slug .toLowerCase() .replace(/\s+/g, '-') .replace(/[^a-z0-9_-]/g, ''); };