fix(cpq): Add `schema` to Query.data() payload (#22791)

This commit is contained in:
Hugh A. Miles II 2023-01-25 20:17:39 +02:00 committed by GitHub
parent 9ed2326a20
commit 88a5d987da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -244,6 +244,7 @@ class Query(
"owners": self.owners_data,
"database": {"id": self.database_id, "backend": self.database.backend},
"order_by_choices": order_by_choices,
"schema": self.schema,
}
def raise_for_access(self) -> None: