Files
relspecgo/tests/assets/graphql/custom_scalars.graphql
2025-12-28 11:41:55 +02:00

14 lines
178 B
GraphQL

# GraphQL schema with custom scalars
scalar DateTime
scalar JSON
scalar Date
type User {
id: ID!
email: String!
createdAt: DateTime!
metadata: JSON
birthDate: Date
}