You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should simplify some of the graphql interfaces to avoid issues like this from happening: FuelLabs/fuels-ts#1706
Specifically, users shouldn't need to be able to query every field of a contract within a receipt, and this could just be simplified to returning only the ContractId.
The text was updated successfully, but these errors were encountered:
closes: #1652
Having the ability to fetch all data related to a contract is overkill
and costly in most cases, and usually done by accident. This api change
simplifies the GQL schema to simply return a contractId instead of a
contract resolver for tx inputs, receipts, and more.
Note that the full contract details (such as the contract bytecode) can
still be fetched directly via the contract query endpoint.
We should simplify some of the graphql interfaces to avoid issues like this from happening: FuelLabs/fuels-ts#1706
Specifically, users shouldn't need to be able to query every field of a contract within a receipt, and this could just be simplified to returning only the ContractId.
The text was updated successfully, but these errors were encountered: