graphql-scalars icon indicating copy to clipboard operation
graphql-scalars copied to clipboard

GraphQL Scalars specifications repo.

Results 6 graphql-scalars issues
Sort by recently updated
recently updated
newest added
trafficstars

This pull request attempts to document two different types of Durations per the ISO 8601 standard: - `AccurateDuration`, relating to the portion of a Duration that is context-free (that is,...

Right now we have: * [DateTime](https://scalars.graphql.org/andimarek/date-time.html), exact point in time with UTC offset: `2011-08-30T13:22:53.108+03:30` * [LocalDate](https://scalars.graphql.org/andimarek/local-date.html), a local date without a time-zone: `1983-10-20` But we're missing a way to represent...

This is an attempt on adding specification for an EmailAddress Scalar. I made a library for .NET, [ScalarKit](https://github.com/Juke-Duke/ScalarKit), implementing common Scalar types for developers to utilize in their domains, and...

Idea: we could add another custom scalar spec which is a subclass of the string template, which is regex based. This means the input and output would be fully described...

Adding a month (YearMonth) scalar "2024-07", "1991-03", etc.

The `Long` data type is commonly used in many applications because the largest value that can be held in an `Int` value is `2^31-1`. See: https://github.com/graphql/graphql-spec/issues/73 I'm honestly torn about...