-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Description
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.
Metadata
Metadata
Assignees
Labels
No labels