Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@gotamedia/everysport-datasource-http

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gotamedia/everysport-datasource-http

Fetch data from EverySport api wrapped in an Apollo RESTDatasource class

latest
npmnpm
Version
0.4.3
Version published
Weekly downloads
78
Maintainers
3
Weekly downloads
 
Created
Source

Everysport datasource http

This package is a data fetcher for the Everysport api wrapped in an Apollo RESTDatasource class. It exports TypeScript types and JavaScript methods to fetch data from the different endpoints in their api. It can be used as a resolver for a GraphQL subgraph inside an Apollo Federated SuperGraph setup.

Install

$ npm install @gota/everysport-datasource-http

Usage

In apollo server v4 the datasource can be passed in with the context and be used in your resolver to do the actual data fetching.

index.ts

import { ApolloServer } from '@apollo/server'
import { startStandaloneServer } from '@apollo/server/standalone'
import { typeDefs, resolvers } from './schema'

import { EverysportDatasourceHTTP } from '@gota/everysport-datasource-http

interface MyContext {
    dataSource: EverysportDataSourceHTTP
}

const sportAPI = new EverysportDataSourceHTTP({
    baseURL: 'https://everysports.url',
    key: 'secret-key',
    version: '1'
})

const server = new ApolloServer<MyContext>({ typeDefs, resolvers })

await startStandaloneServer(server, {
  context: async ({ req }) => ({ dataSource: sportAPI})
})

resolvers.ts

export const resolvers = {
    Query: {
        sports: (_, __, { dataSource }) => dataSource.getSports(),
        events: (_, args, { dataSource }) => dataSource.getEvents({ leagueId: args.leagueId }),
        topScorers: (_, args, { dataSource }) => dataSource.getTopScorers(args.leagueId)
    },
}

Reference

The EverysportDataSourceHTTP implementation exposes the following methods to fetch data by:

  • getSports(): Promise<SportModel[]>
  • getEvents(args: EventsArgumentsInterface): Promise<EventModel[]>
  • getTopScorers(leagueId: number): Promise<TopScorerPlayerModel[]>
  • getStandings(leagueId: number): Promise<GroupModel[]>

The following TypeScript types is exported:

  • SportModel
  • EventModel
  • PlayerModel
  • TeamModel
  • TopScorerPlayerModel
  • GroupModel
  • StandingModel
  • MetadataModel

They can come in handy when you compose your graphql subgraph and resolvers.

These are also of interest and describes what you can pass in as arguments to the various data fetch methods:

  • EventsArgumentsInterface
  • SportsArgumentsInterface

FAQs

Package last updated on 19 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts