one `Action` can be connected to many `Person`s
# orm-help
g
one
Action
can be connected to many `Person`s
a
Copy code
query {
  action(id: "1") {
    members {
      person {
        name
      }
    }
  }
}
I think that could work. Try it
g
nope, it doesn't. it is a query, but i need to do something with schemas. look at
Person
, I connect it to
User
throw
author: User!
. I need to do something like that with
Action
but Idk how because
Action
can be connected to many `Person`s
a
Can you share your playground?