8 lines
104 B
JavaScript
8 lines
104 B
JavaScript
import { gql } from 'graphql-tag'
|
|
|
|
export default gql`
|
|
extend type Query {
|
|
chainFee: Float!
|
|
}
|
|
`
|