Skip to content

Instantly share code, notes, and snippets.

@unicodeveloper
Last active September 4, 2018 15:06
Show Gist options
  • Save unicodeveloper/584f095114f2fcf3af289cd53361d77e to your computer and use it in GitHub Desktop.
Save unicodeveloper/584f095114f2fcf3af289cd53361d77e to your computer and use it in GitHub Desktop.
import { RESTDataSource } from 'apollo-datasource-rest';
export class MvrpAPI extends RESTDataSource {
constructor() {
super();
this.baseURL = 'https://mvrp.herokuapp.com/api/';
}
async getAllCars() {
return this.get('cars');
}
async getACar(plateNumber) {
const result = await this.get('car', {
plateNumber
});
return result[0];
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment