Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement AgentRelationship & AgentRelationshipRole classes: zomes + resolvers + tests #321

Open
21 tasks
Connoropolous opened this issue Jul 2, 2022 · 7 comments
Labels
graphql-api Something at the layer of what is and isn't implemented that affects the graphql api

Comments

@Connoropolous
Copy link
Contributor

Connoropolous commented Jul 2, 2022

All of this should simply be added to the agent Dna

https://lab.allmende.io/valueflows/vf-schemas/vf-graphql/-/blob/sprout/lib/schemas/agent.gql#L104-125

  • add AgentRelationship zome, including index
  • add AgentRelationshipRole zome, including index
  • add all the graphql stuff in modules/vf-graphql-holochain that is outlined below
  • add tests under test/agent

Don't do: AgentRelationship.inScopeOf that can be done in #297

Graphql

queries

  • agentRelationship
  • agentRelationships
  • agentRelationshipRole
  • agentRelationshipRoles

mutations

  • createAgentRelationship
  • updateAgentRelationship
  • deleteAgentRelationship
  • createAgentRelationshipRole
  • updateAgentRelationshipRole
  • deleteAgentRelationshipRole

edge resolvers

  • AgentRelationship.subject
  • AgentRelationship.object
  • AgentRelationship.relationship
  • Agent.relationships (union of AgentRelationship.subject and AgentRelationship.object)
  • Agent.relationshipsAsSubject (inverse of AgentRelationship.subject)
  • Agent.relationshipsAsObject (inverse of AgentRelationship.object)
  • AgentRelationshipRole.agentRelationships (inverse of AgentRelationship.relationship)
@Connoropolous Connoropolous added the graphql-api Something at the layer of what is and isn't implemented that affects the graphql api label Jul 2, 2022
@Connoropolous
Copy link
Contributor Author

hi @pospi and @fosterlynn I have defined a scope of work for AgentRelationship and AgentRelationshipRole here.

It looked pretty clear, but I have one question:

how does this Agent.roles work? It's signature looks a little outdated
https://lab.allmende.io/valueflows/vf-schemas/vf-graphql/-/blob/sprout/lib/schemas/agent.gql#L99

@Connoropolous Connoropolous added this to MMR Jul 3, 2022
@pospi
Copy link
Member

pospi commented Jul 4, 2022

I think it's just meant to list all the roles that have been assigned as relationships to that agent. But it might not be that necessary for an MVP, I struggle to think of cases where this is useful whilst querying the relationships of an Agent is obviously an important thing.

@fosterlynn
Copy link

fosterlynn commented Jul 4, 2022

how does this Agent.roles work?

I struggle to think of cases where this is useful whilst querying the relationships of an Agent is obviously an important thing

Yeah, can't even remember why that might be particularly useful. I would take it out of MMR or maybe out of hREA.

@pospi
Copy link
Member

pospi commented Jul 5, 2022

I guess it may be useful to know "in what types of roles does this entity participate"?

@fosterlynn
Copy link

I guess it may be useful to know "in what types of roles does this entity participate"?

We can wait to find out if anyone needs it, there are lots of unimplemented and probably-never-to-be-implemented queries. Just imo.

@fosterlynn
Copy link

I want to describe what RoleBehavior is for, so you can decide if you want to leave it out or add it back in.

Since the AgentRelationshipRoles are totally user defined, it is helpful for UI apps to have an understanding of what roles go where in an app. Like these roles are all members, or these are suppliers, or these are parts of the organization. Of course, these apps can also check the roles explicitly, but then it works only for that network or organization.

If you decide to use RoleBehavior, we'll need to make a more complete and better thought through list and update the VF vocab.

@pospi
Copy link
Member

pospi commented Jul 12, 2022

I'm mostly avoiding it and leaving it out, since it is such an unstable part of the spec. I would rather domain-specific app logic is dealing with conditions based on AgentRelationshipRole for now, and could be updated later if those checks ever become too complicated or verbose.

@Connoropolous Connoropolous removed this from MMR Aug 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
graphql-api Something at the layer of what is and isn't implemented that affects the graphql api
Projects
None yet
Development

No branches or pull requests

3 participants