Editor
An account with editor permission in a DAO space. Editors can submit proposals and vote.
type Editor implements Node {
nodeId: ID!
spaceId: UUID!
memberSpaceId: UUID!
space: Space
}
Fields
Editor.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
Editor.spaceId ● UUID! non-null scalar
Editor.memberSpaceId ● UUID! non-null scalar
Editor.space ● Space object
Reads a single Space that is related to this Editor.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
editor query ● editorByNodeId query ● editors query
Member Of
EditorsConnection object ● EditorsEdge object ● Space object