stacker.news/api/typeDefs/price.js

8 lines
122 B
JavaScript
Raw Normal View History

import { gql } from 'graphql-tag'
export default gql`
extend type Query {
price(fiatCurrency: String): Float
}
`