type Author { olid: ID! name: String! @search(by: [exact]) works: [Work] } type Work { olid: ID! title: String! @search(by:[exact]) editions: [Edition] } type Edition { olid: ID! title:String! }