
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
@eonian/graphql-typescript-scalar-type-policies
Advanced tools
[](https://www.npmjs.com/package/@eonian/graphql-typescript-scalar-type-policies)
This is a graphql-code-generator plugin that generates type policies for every field that uses custom scalars.
Given a config like:
generates:
integration/graphql-types.ts:
config:
scalars:
Date: "src/dates#Date"
scalarTypePolicies:
Date: "src/dates#dateTypePolicy"
And a schema that uses Date
fields:
scalar Date
type Author {
name: String!
date: Date
}
This plugin generates the following snippet in the output file:
import { dateTypePolicy } from "src/dates";
export const scalarTypePolicies = {
Author: { fields: { date: dateTypePolicy } },
};
Where the dateTypePolicy
const
should implement the Apollo Client FieldPolicy
.
Which you can then pass to Apollo's InMemoryCache
:
new InMemoryCache({ typePolicies: scalarTypePolicies })
And you can implement a field policy like:
export const dateTypePolicy: FieldPolicy<Date, string> = {
merge: (_, incoming) => {
if (isNullOrUndefined(incoming)) {
// It's important for these methods to return null if passed null
return incoming;
} else if (incoming instanceof Date) {
// In tests our mocks already have Date
return incoming;
} else {
return parseISO(incoming as string);
}
},
};
Note that this will handle reading data from the cache; to handle submitting custom scalars (i.e. Date
) as variables / input to mutations, your custom scalars should implement toJSON()
, which Apollo will implicitly calls when putting them on the wire.
FAQs
[](https://www.npmjs.com/package/@eonian/graphql-typescript-scalar-type-policies)
The npm package @eonian/graphql-typescript-scalar-type-policies receives a total of 6 weekly downloads. As such, @eonian/graphql-typescript-scalar-type-policies popularity was classified as not popular.
We found that @eonian/graphql-typescript-scalar-type-policies demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.