INPUT_OBJECT

SearchConnectFilter

SearchConnectFilter is used for searching for documents and adding connections based on whether they pass a Filter

link GraphQL Schema definition

  • input SearchConnectFilter {
  • # filter is the filter to apply against the graph.
  • filter: Filter!
  • # gtype is the type of the connection to create
  • gtype: String!
  • # attributes are k/v pairs to associate with the new connection
  • attributes: Map
  • # directed indicates whether the connection is uni-directional(instagram) or
  • # bi-directional(facebook)
  • directed: Boolean!
  • # from indicates the root document of the connection to create
  • from: RefInput!
  • }

link Require by