Getting Started
All the functionality for the ecorider API is available via a GraphQL interface. If you are not familiar with GraphQL, please read over this introduction and locate a suitable client library for the language you plan to use.
The GraphQL endpoint to use is
https://api.ecoeats.uk/graphql.const client = new ApolloClient({
link: [
createHttpLink({
uri: 'https://api.ecoeats.uk/graphql',
}),
],
});