-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(api-graphql): incorrect list sk arg type #13249
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -721,6 +721,45 @@ export function generateGraphQLDocument( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
selectionSet as ListArgs['selectionSet'], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// default PK args for get and list operations | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// modified below for CPK | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const getPkArgs = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[primaryKeyFieldName]: `${fields[primaryKeyFieldName].type}!`, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const listPkArgs = {}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const generateSkArgs = (op: 'get' | 'list') => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return sortKeyFieldNames.reduce( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(acc: Record<string, any>, fieldName: string) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const fieldType = fields[fieldName].type; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (op === 'get') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
acc[fieldName] = `${fieldType}!`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else if (op === 'list') { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
acc[fieldName] = `Model${fieldType}KeyConditionInput`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return acc; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+731
to
+746
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: can use
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the suggested change makes this harder to read/grok. I'd rather keep it very simple since we've had lots of bugs in this code already. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if (isCustomPrimaryKey) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Object.assign(getPkArgs, generateSkArgs('get')); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Object.assign( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
listPkArgs, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// PK is only included in list query field args in the generated GQL | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// when explicitly specifying PK with .identifier(['fieldName']) or @primaryKey in the schema definition | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[primaryKeyFieldName]: `${fields[primaryKeyFieldName].type}`, // PK is always a nullable arg for list (no `!` after the type) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sortDirection: 'ModelSortDirection', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
generateSkArgs('list'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch (modelOperation) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case 'CREATE': | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case 'UPDATE': | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -736,36 +775,15 @@ export function generateGraphQLDocument( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
// TODO(Eslint): this this case clause correct without the break statement? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// eslint-disable-next-line no-fallthrough | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case 'READ': | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
graphQLArguments ?? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(graphQLArguments = isCustomPrimaryKey | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? [primaryKeyFieldName, ...sortKeyFieldNames].reduce( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(acc: Record<string, any>, fieldName) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
acc[fieldName] = `${fields[fieldName].type}!`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return acc; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
[primaryKeyFieldName]: `${fields[primaryKeyFieldName].type}!`, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
graphQLArguments ?? (graphQLArguments = getPkArgs); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
graphQLSelectionSet ?? (graphQLSelectionSet = selectionSetFields); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// TODO(Eslint): this this case clause correct without the break statement? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// eslint-disable-next-line no-fallthrough | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case 'LIST': | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
graphQLArguments ?? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(graphQLArguments = { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
...listPkArgs, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
filter: `Model${name}FilterInput`, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
...(sortKeyFieldNames.length > 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
? [primaryKeyFieldName, ...sortKeyFieldNames].reduce( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(acc: Record<string, any>, fieldName) => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
acc[fieldName] = `${fields[fieldName].type}`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return acc; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{ sortDirection: 'ModelSortDirection' }, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
: []), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
limit: 'Int', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
nextToken: 'String', | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same effect, but this outputs a helpful diff if the string doesn't match, whereas previously it would only tell us got
false
expectedtrue
.