#! /bin/bash if [ $# != 1 ]; then echo "usage: create " exit 1 fi api="http://index-node.default/" data=$(printf '{"jsonrpc": "2.0", "method": "subgraph_create", "params": {"name":"%s"}, "id":"1"}' "$1") curl -s -H "content-type: application/json" --data "$data" "$api"