Skip to content

Files

Latest commit

6afcadd · Dec 16, 2024

History

History
15 lines (12 loc) · 286 Bytes

clean-hairs-pretend.md

File metadata and controls

15 lines (12 loc) · 286 Bytes
@neo4j/graphql
major

Fails schema generation if there are conflicting plural names in types. For example, the following schema will fail, due to ambiguous Techs plural

type Tech @node(plural: "Techs") {
    name: String
}

type Techs {
    value: String
}