-
Notifications
You must be signed in to change notification settings - Fork 417
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
Bug: Batch Resolver – List(Dict) Not Resolving #6251
Comments
Thanks for opening your first issue here! We'll come back to you as soon as we can. |
Hi @swarnim-kamal! Thanks for opening this bug report! I haven't tried what you reported yet, but looking at our code, I think it makes sense yeah! I'll try to reproduce it today/tomorrow and update this issue. |
Thank you @leandrodamascena for looking into this. Btw @swarnim-kamal and I are co-workers and he is leading this migration effort. |
Thanks for the additional information @thenamanpatwari! I really hope to fix this soon to unblock your migration! I would like some additional information to understand the scenario here: I tried to simulate it here but couldn't, possibly because I didn't have enough data, but I see that you return a list, which is exactly what we expect here and what AppSync expects as a return. Where are you getting Null, in AppSync resolver? Could you provide me with a payload that you are getting in this Lambda and I can mock some data here? And sorry for blocking this migration, we will figure it out. |
Thanks for clarifying your doubt @leandrodamascena , type Item { type SingleItem{ input ItemFilter { #query in App Sync Graphql playgroud: #Resolver: Output(Actual): So that means that there is an issue with how batch resolution is happening in the output of the lambda. |
Hi @thenamanpatwari and @swarnim-kamal! Sorry for the delay in responding here, but I was trying to reproduce the error and finally I managed to do it! I don't know if the issue is related to the Powertools batch resolver, but instead how AppSync works in this case. I created two Lambda without Powertools and using the same schema and got the same behavior you had. Do you two have some free time this week to connect on a call and make some additional debug? I really want to help you guys solve this as soon as possible and unblock this migration. I want to show you the scenario I created in my account. If we can't find the problem/solve it, I can try to connect internally with some other peer and get more information. Thanks |
Hi @leandrodamascena I’d also like to mention that the implementation was working correctly in the previous version. Here’s how we initially approached it: to_return = [] Regarding our availability, we will be available for a meeting on Wednesday from 10:00 AM to 12:00 PM GMT. Once again, we really appreciate your support, and we look forward to the discussion. Let us know if this time works for you. |
Hey @swarnim-kamal, can you please send an email to [email protected] and then I send an invite? I don't have your email. |
Hi @leandrodamascena, |
Hi @thenamanpatwari and @swarnim-kamal! Thank you so much for attending the meeting and sharing your use case. Based on what we discussed yesterday, I can confirm that Batch Resolvers are working as expected and you probably need to add the I will continue to investigate the use cases where adding the Please ping me if you have any additional question. |
Expected Behaviour
The batch resolver should return the resolved values for each item in the input list, regardless of the data structure being processed. This principle should hold true even when the resolver is passing a list(dictionary).
Current Behaviour
When passing a list of dictionaries as the output (with the order matching the input list), the batch resolver fails to resolve the output correctly and instead returns null.
Code snippet
Possible Solution
Since the resolver successfully handles list(list(dictionary)) (as verified), it should logically be able to resolve list(dictionary) as well. However, it fails to do so, suggesting that a minor adjustment in the resolver logic could be enough to fix the issue.
Steps to Reproduce
Create a GraphQL schema where the Item type contains a single child object (singleItem) that expects a SingleItem dictionary.
type Item {
id: ID!
name: String!
singleItem: SingleItem
}
type SingleItem {
id: ID!
name: String!
}
input ItemFilter {
id: ID
name: String
}
type Query {
getItem(filter: ItemFilter): [Item] @aws_api_key
}
Implement the Batch Resolver
Use a batch resolver for the singleItem field in the Item type.
@router.batch_resolver(type_name="Item", field_name="singleItem", aggregate=True)
@tracer.capture_method
@cdk_gql.appsync_batch(2000) # Define batch size
def query_getSingleItem(event: List[AppSyncResolverEvent]) -> List[Any]:
Resolver logic here
Execute the Query
Run the following GraphQL query to fetch Item details along with its singleItem child:
query MyQuery {
getItem {
id
name
singleItem {
id
name
}
}
}
Observe the Output
The query unexpectedly returns null for singleItem, even though the resolver executes without errors.
Powertools for AWS Lambda (Python) version
latest
AWS Lambda function runtime
3.9
Packaging format used
PyPi
Debugging logs
The text was updated successfully, but these errors were encountered: