package
0.0.0-20220114054724-f501dc898939
Repository: https://github.com/cryptometrics/cql.git
Documentation: pkg.go.dev

# README

Graph

To start the graphql server go to the cmd/graphql directory and generate the graphql binary with go build. Then run

./graphql start --port=8080

and visit http://localhost:8080/

Here is an example query using the coinbase SDK:

query {
  coinbaseWallets {
    id,
    destinationTagName,
    swiftDepositInformation {
      bankName
    },
    sepaDepositInformation {
      bankName
    },
    destinationTagRegex
  }
}

Updating the Schema

To add new endpoints, add a json file to schema/model and run the generate script:

python3 generate.py

To re-generate a change to the schema:

$ gqlgen generate

# Packages

No description provided by the author

# Structs

No description provided by the author