DEV Community

anuragshah17
anuragshah17

Posted on

React APP with Apollo APQ

const GET_NODES = {
operationName: 'nodeById',
variables: null,
extensions: {
persistedQuery: {
version: 1,
sha256Hash: 'hashOfQuery'
}
}
};

I want to export this but it is a object. What needs to be done for converting it into string.

Top comments (0)