({ item }: Props)
| 8 | } |
| 9 | |
| 10 | export function InputObject({ item }: Props) { |
| 11 | const { t } = useTranslation('products') |
| 12 | const heading = t('graphql.reference.input_fields') |
| 13 | return ( |
| 14 | <GraphqlItem item={item} heading={heading}> |
| 15 | <Table fields={item.inputFields} /> |
| 16 | </GraphqlItem> |
| 17 | ) |
| 18 | } |
nothing calls this directly
no test coverage detected