Linked from two content models use reference field (graphql)

I can’t to use Linkedfrom in my graphql query from 2 content models

query {
mainSectionCollection { // it 's OK
items {
linkedFrom {
questionCollection {. //don’t see this collection. I can add only (entryCollection ***)
total
items {
title
slug
}
}
}
}
}
}


entryCollection{
items{
contentfulMetadata{
tags{
id
name
}
}
}
}

But it return null. In sections of content model && content on contentful.com i’ve added field reference one-to-one and filled with values

I’ve used this example : https://www.contentful.com/blog/2021/06/15/filter-entries-by-linked-references-in-graphql-api/

1 Like