Fails to import schema files with more than one definition
See original GitHub issueFor instance a file containing each of the following.
This imports correctly
type Affiliate {
_id: String!
ref: String!
name: String
paypalEmail: String
userId: String!
rate: Float
}
This imports as undefined
type Affiliate {
_id: String!
ref: String!
name: String
paypalEmail: String
userId: String!
rate: Float
}
input AffiliateInput {
_id: String!
ref: String!
name: String
paypalEmail: String
userId: String!
rate: Float
}
extend type Query {
affiliates: [Affiliate]
}
extend type Mutation {
createAffiliate(affiliate: AffiliateInput): Affiliate
updateAffiliate(affiliate: AffiliateInput): Affiliate
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
MOXY- Multiple XSDs import the same schema definition- error
I have determined the cause is the fact that all three schemas import schemaDefinitions.xsd. If I remove the import statement from schema2 and ......
Read more >Resolution of the validation error when a schema specifies ...
Resolution of the validation error when a schema specifies multiple imports with different schemaLocation and same namespace. Troubleshooting ...
Read more >Unable to import WSDL, if it contains import of ... - GitHub
Unable to import WSDL, if it contains import of external schema definitions ... Import file Options; Click Import; PM displays Import complete :...
Read more >Unable to import XSD with multiple dependent schema files ...
This issue occurs when the schema files are not valid. It is not possible to redefine elements from a schema where the attributeGroup...
Read more >Data Import error message reference - Analytics Help
Message Meaning So...
Empty column header at column number X. The upload file is missing a column header. Ed...
Multiple errors occurred: List of multiple...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey @stolinski just a heads up a bug was found that affects operations with fragments. Please upgrade to v2.3.2.
Works perfectly! You are the man.