float is not a valid TS type. It needs to be number.
Per the comment on line 65 above, in the graphql.ts file knownAllowedNames is already correctly defined as such:
export const knownAllowedNames: Map<string, string> = new Map([
["Date", "Date"],
["Boolean", "boolean"],
["Number", "number"],
["String", "string"],
// TODO not right to have this and Number
["Int", "number"],
["Float", "number"],
["ID", "ID"],
["JSON", "any"],
["Node", "Ent"],
]);
float
is not a valid TS type. It needs to benumber
.Per the comment on line 65 above, in the
graphql.ts
fileknownAllowedNames
is already correctly defined as such:Fixes #1826