Skip to content

Commit

Permalink
fix(public): fixed a bug on the public api
Browse files Browse the repository at this point in the history
  • Loading branch information
AndySakov committed Oct 31, 2024
1 parent fe265a6 commit 5eb20c2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/public/public.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ export class PublicService {
investors: apoc.coll.toSet([
(organization)-[:HAS_FUNDING_ROUND|HAS_INVESTOR*2]->(investor) | investor { .* }
]),
community: [(organization)-[:IS_MEMBER_OF_COMMUNITY]->(community) | community.name ],
ecosystems: [
(organization)-[:HAS_PROJECT|IS_DEPLOYED_ON|HAS_ECOSYSTEM*3]->(ecosystem) | ecosystem.name
],
grants: [(organization)-[:HAS_GRANTSITE]->(grant) | grant.url ],
reviews: [
(organization)-[:HAS_REVIEW]->(review:OrgReview) | review {
Expand Down

0 comments on commit 5eb20c2

Please sign in to comment.