We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, inner of object contract i want to show this:
contract{ development { block { unit { } } } }
any idea how to make..
i made this:
Contract: { async client(contract) { try { const contractClient = await admin .firestore() .doc(clients/${contract.clientId}) .get(); return contractClient.data() as Client; } catch (error) { throw new ApolloError(error); } }, async development(contract) { try { const contractDevelopment = await admin .firestore() .doc(developments/${contract.developmentId}) .get(); return contractDevelopment.data() as Development; } catch (error) { throw new ApolloError(error); } } }
Contract: { async client(contract) { try { const contractClient = await admin .firestore() .doc(
) .get(); return contractClient.data() as Client; } catch (error) { throw new ApolloError(error); } }, async development(contract) { try { const contractDevelopment = await admin .firestore() .doc(
) .get(); return contractDevelopment.data() as Development; } catch (error) { throw new ApolloError(error); } } }
for block and unit i don't no how to proceed.
The text was updated successfully, but these errors were encountered:
Did you find a solution?
Sorry, something went wrong.
No branches or pull requests
Hi,
inner of object contract i want to show this:
contract{ development { block { unit { } } } }
any idea how to make..
i made this:
Contract: { async client(contract) { try { const contractClient = await admin .firestore() .doc(
clients/${contract.clientId}) .get(); return contractClient.data() as Client; } catch (error) { throw new ApolloError(error); } }, async development(contract) { try { const contractDevelopment = await admin .firestore() .doc(
developments/${contract.developmentId}) .get(); return contractDevelopment.data() as Development; } catch (error) { throw new ApolloError(error); } } }
for block and unit i don't no how to proceed.
The text was updated successfully, but these errors were encountered: