Schemas
GraphQL Integration
How schemas integrate with GraphQL in Orionjs
Orionjs schemas automatically integrate with GraphQL, providing a seamless type-safe experience from your database to your API.
Basic Integration
When you define a schema with schemaWithName()
, it can be used directly in GraphQL resolvers:
Orionjs will automatically:
- Generate the GraphQL type for
UserSchema
- Validate the resolver’s return value against the schema
- Convert any special types (like dates) to the appropriate GraphQL format
GraphQL Schema Customization
You can customize how a schema appears in GraphQL:
Generated GraphQL Types
The following table shows how schema types map to GraphQL types:
Schema Type | GraphQL Type | Notes |
---|---|---|
String | String | Plain text |
Number | Float | Default numeric type |
'integer' | Int | Whole numbers |
Boolean | Boolean | True/false values |
Date | Date | Custom scalar type |
Schema | Object Type | Nested object definition |
[Type] | [Type] | List of items |
Enum | Enum | Custom enum type |
Using Schemas for GraphQL Inputs
Schemas can be used for input validation:
Custom GraphQL Type Resolvers
For complex field types, you can add custom resolvers:
Was this page helpful?