cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

AdrianSpear
Node
since ‎06-10-2022
‎09-09-2022

User Statistics

  • 3 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi, Using following definitions: interface IGraphEdge @relationshipProperties {    created: DateTime! @timestamp(operations: [CREATE])    modified: DateTime! @timestamp(operations: [CREATE, UPDATE])}interface IPerson {    displayName: String!    kno...
Hi,I am using GraphQL library for Neo4j.How can I define a property on a type (e.g. tenantId: String!) which will take its value from the 'tid' property of the jwt auth token?I currently use a '@bind' on the $jwt.sub but ideally, the 'tenantId' field...