mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-17 10:21:25 +00:00
14 lines
315 B
JavaScript
14 lines
315 B
JavaScript
import {
|
|
GraphQLDate,
|
|
GraphQLTime,
|
|
GraphQLDateTime
|
|
} from 'graphql-iso-date'
|
|
|
|
export default function applyScalars (augmentedSchema) {
|
|
augmentedSchema._typeMap.Date = GraphQLDate
|
|
augmentedSchema._typeMap.Time = GraphQLTime
|
|
augmentedSchema._typeMap.DateTime = GraphQLDateTime
|
|
|
|
return augmentedSchema
|
|
}
|