GraphQL: Create Product and return Translatable resources

I’d like to create a product through the GraphQL API and then also specify which fields to be returned. Specifically I’d like the Translateable Resource IDs so I know the digest id’s for the translateable fields.

I’ve noticed that the returned object is a Product, and that Product has the following field:

translations ([PublishedTranslation!]!)

The translations associated with the resource.

(https://shopify.dev/docs/admin-api/graphql/reference/products-and-collections/product)

However, I’m not sure how I can specify that I’d like the translations field on the returned product, when creating a new product.

Any advice?