import { Link } from '@/frame/components/Link' import { GraphqlItem } from './GraphqlItem' import { Table } from './Table' import { useTranslation } from '@/languages/components/useTranslation' import type { ObjectT, InterfaceT } from './types' type Props = { item: InterfaceT objects: ObjectT[] } export function Interface({ item, objects }: Props) { const { t } = useTranslation('graphql') const heading = t('reference.implemented_by').replace('{{ GraphQLItemTitle }}', item.name) const heading2 = t('reference.fields').replace('{{ GraphQLItemTitle }}', item.name) const implementedBy = objects.filter( (object) => object.implements && object.implements.some((implementsItem) => implementsItem.name === item.name), ) return ( {item.fields && ( <>

)} ) }