Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sveltekit-graphql

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sveltekit-graphql - npm Package Versions

13

0.3.0

Diff

Changelog

Source

0.3.0

Minor Changes

  • 4108ab3: Support for custom scalars in server code generation.

    Custom scalars defined in your houdini.config.js will now be picked up by the server code generation. By default they will be given the type string, but this can be changed by setting the serverType on the scalar config. Note that the type field only affects the client side type, as the server does not use the custom marshal/unmarshal functions defined here and so the types will likely differ.

    For example, here is an example with a custom Void type

    import { createHoudiniConfig } from 'sveltekit-graphql/config';
    
    const config = createHoudiniConfig({
    	scalars: {
    		Void: {
    			type: 'void',
    			serverType: 'void',
    			marshal: () => null,
    			unmarshal: () => {},
    		},
    	},
    });
    
    export default config;
    
jamesb-peopleplus
published 0.0.0-snapshot-20231108101330 •

jamesb-peopleplus
published 0.2.0 •

Changelog

Source

0.2.0

Minor Changes

  • b5137bb: add utility to create houdini config in project
jamesb-peopleplus
published 0.0.0-snapshot-20231106131138 •

jamesb-peopleplus
published 0.0.0-snapshot-20231106122131 •

jamesb-peopleplus
published 0.1.3 •

Changelog

Source

0.1.3

Patch Changes

  • 3fb9e2b: Add generate command to manually run codegen
jamesb-peopleplus
published 0.0.0-snapshot-20231103133536 •

jamesb-peopleplus
published 0.0.0-snapshot-20231103122351 •

jamesb-peopleplus
published 0.1.2 •

Changelog

Source

0.1.2

Patch Changes

  • 1c9727f: Fix package exports for sveltekit-graphql/vite
jamesb-peopleplus
published 0.0.0-snapshot-20231103120645 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc