You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble using the Base Schema/Schema Exension part of Hive, with a Schema Stitching project
I want to use it to define some custom directives, as well as some shared scalars and types.
As an example, I add this to the Base Schema and hit save:
directive @mycustom on FIELD_DEFINITION
scalar DateTime
With a schema like (the rest omitted for brevity):
type User {
id: ID!
created: DateTime!
name: String! @mycustom
}
I get errors both from hive schema:check and hive schema:publish :
If I create a Monolithic Schema project, I can publish just fine with the same inputs. hive schema:check does however give me the same error in both project types.
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
I'm having trouble using the Base Schema/Schema Exension part of Hive, with a Schema Stitching project
I want to use it to define some custom directives, as well as some shared scalars and types.
As an example, I add this to the Base Schema and hit save:
With a schema like (the rest omitted for brevity):
I get errors both from
hive schema:check
andhive schema:publish
:If I create a Monolithic Schema project, I can publish just fine with the same inputs.
hive schema:check
does however give me the same error in both project types.Am I doing something wrong?
The text was updated successfully, but these errors were encountered: