Skip to content

Commit

Permalink
Fix FindMany batch exec types (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich authored Nov 23, 2022
1 parent 0c544de commit 821b9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/find_many.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ impl<'a, Actions> BatchQuery for FindMany<'a, Actions>
where
Actions: ModelActions,
{
type RawType = Actions::Data;
type RawType = Vec<Actions::Data>;
type ReturnType = Self::RawType;

fn graphql(self) -> Operation {
Expand Down

0 comments on commit 821b9ba

Please sign in to comment.