graphlit-client 1.0.20251129002 → 1.0.20251129003

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8530,6 +8530,14 @@ export const QueryInvestmentsClusters = gql `
8530
8530
  currentPricePerShare
8531
8531
  discountPercent
8532
8532
  proRataRights
8533
+ investor {
8534
+ id
8535
+ name
8536
+ }
8537
+ organization {
8538
+ id
8539
+ name
8540
+ }
8533
8541
  }
8534
8542
  clusters {
8535
8543
  clusters {
@@ -8876,6 +8884,22 @@ export const QueryInvestmentFundsClusters = gql `
8876
8884
  vintage
8877
8885
  targetSize
8878
8886
  targetSizeCurrency
8887
+ organizations {
8888
+ id
8889
+ name
8890
+ }
8891
+ investments {
8892
+ id
8893
+ name
8894
+ }
8895
+ parentFund {
8896
+ id
8897
+ name
8898
+ }
8899
+ childFunds {
8900
+ id
8901
+ name
8902
+ }
8879
8903
  }
8880
8904
  clusters {
8881
8905
  clusters {
@@ -12053,6 +12077,42 @@ export const QueryOrganizationsClusters = gql `
12053
12077
  revenueCurrency
12054
12078
  investment
12055
12079
  investmentCurrency
12080
+ founders {
12081
+ id
12082
+ name
12083
+ }
12084
+ employees {
12085
+ id
12086
+ name
12087
+ }
12088
+ members {
12089
+ id
12090
+ name
12091
+ }
12092
+ parentOrganization {
12093
+ id
12094
+ name
12095
+ }
12096
+ memberOf {
12097
+ id
12098
+ name
12099
+ }
12100
+ subOrganizations {
12101
+ id
12102
+ name
12103
+ }
12104
+ locations {
12105
+ id
12106
+ name
12107
+ }
12108
+ investmentsReceived {
12109
+ id
12110
+ name
12111
+ }
12112
+ investorFunds {
12113
+ id
12114
+ name
12115
+ }
12056
12116
  }
12057
12117
  clusters {
12058
12118
  clusters {
@@ -12479,6 +12539,38 @@ export const QueryPersonsClusters = gql `
12479
12539
  title
12480
12540
  occupation
12481
12541
  education
12542
+ worksFor {
12543
+ id
12544
+ name
12545
+ }
12546
+ affiliation {
12547
+ id
12548
+ name
12549
+ }
12550
+ memberOf {
12551
+ id
12552
+ name
12553
+ }
12554
+ alumniOf {
12555
+ id
12556
+ name
12557
+ }
12558
+ birthPlace {
12559
+ id
12560
+ name
12561
+ }
12562
+ deathPlace {
12563
+ id
12564
+ name
12565
+ }
12566
+ homeLocation {
12567
+ id
12568
+ name
12569
+ }
12570
+ workLocation {
12571
+ id
12572
+ name
12573
+ }
12482
12574
  }
12483
12575
  clusters {
12484
12576
  clusters {
@@ -27689,6 +27689,16 @@ export type QueryInvestmentsClustersQuery = {
27689
27689
  h3r14?: string | null;
27690
27690
  h3r15?: string | null;
27691
27691
  } | null;
27692
+ investor?: {
27693
+ __typename?: 'InvestmentFund';
27694
+ id: string;
27695
+ name: string;
27696
+ } | null;
27697
+ organization?: {
27698
+ __typename?: 'Organization';
27699
+ id: string;
27700
+ name: string;
27701
+ } | null;
27692
27702
  } | null> | null;
27693
27703
  clusters?: {
27694
27704
  __typename?: 'EntityClusters';
@@ -28102,6 +28112,26 @@ export type QueryInvestmentFundsClustersQuery = {
28102
28112
  h3r14?: string | null;
28103
28113
  h3r15?: string | null;
28104
28114
  } | null;
28115
+ organizations?: Array<{
28116
+ __typename?: 'Organization';
28117
+ id: string;
28118
+ name: string;
28119
+ } | null> | null;
28120
+ investments?: Array<{
28121
+ __typename?: 'Investment';
28122
+ id: string;
28123
+ name: string;
28124
+ } | null> | null;
28125
+ parentFund?: {
28126
+ __typename?: 'InvestmentFund';
28127
+ id: string;
28128
+ name: string;
28129
+ } | null;
28130
+ childFunds?: Array<{
28131
+ __typename?: 'InvestmentFund';
28132
+ id: string;
28133
+ name: string;
28134
+ } | null> | null;
28105
28135
  } | null> | null;
28106
28136
  clusters?: {
28107
28137
  __typename?: 'EntityClusters';
@@ -31969,6 +31999,51 @@ export type QueryOrganizationsClustersQuery = {
31969
31999
  country?: string | null;
31970
32000
  postalCode?: string | null;
31971
32001
  } | null;
32002
+ founders?: Array<{
32003
+ __typename?: 'Person';
32004
+ id: string;
32005
+ name: string;
32006
+ } | null> | null;
32007
+ employees?: Array<{
32008
+ __typename?: 'Person';
32009
+ id: string;
32010
+ name: string;
32011
+ } | null> | null;
32012
+ members?: Array<{
32013
+ __typename?: 'Person';
32014
+ id: string;
32015
+ name: string;
32016
+ } | null> | null;
32017
+ parentOrganization?: {
32018
+ __typename?: 'Organization';
32019
+ id: string;
32020
+ name: string;
32021
+ } | null;
32022
+ memberOf?: Array<{
32023
+ __typename?: 'Organization';
32024
+ id: string;
32025
+ name: string;
32026
+ } | null> | null;
32027
+ subOrganizations?: Array<{
32028
+ __typename?: 'Organization';
32029
+ id: string;
32030
+ name: string;
32031
+ } | null> | null;
32032
+ locations?: Array<{
32033
+ __typename?: 'Place';
32034
+ id: string;
32035
+ name: string;
32036
+ } | null> | null;
32037
+ investmentsReceived?: Array<{
32038
+ __typename?: 'Investment';
32039
+ id: string;
32040
+ name: string;
32041
+ } | null> | null;
32042
+ investorFunds?: Array<{
32043
+ __typename?: 'InvestmentFund';
32044
+ id: string;
32045
+ name: string;
32046
+ } | null> | null;
31972
32047
  } | null> | null;
31973
32048
  clusters?: {
31974
32049
  __typename?: 'EntityClusters';
@@ -32482,6 +32557,46 @@ export type QueryPersonsClustersQuery = {
32482
32557
  country?: string | null;
32483
32558
  postalCode?: string | null;
32484
32559
  } | null;
32560
+ worksFor?: Array<{
32561
+ __typename?: 'Organization';
32562
+ id: string;
32563
+ name: string;
32564
+ } | null> | null;
32565
+ affiliation?: Array<{
32566
+ __typename?: 'Organization';
32567
+ id: string;
32568
+ name: string;
32569
+ } | null> | null;
32570
+ memberOf?: Array<{
32571
+ __typename?: 'Organization';
32572
+ id: string;
32573
+ name: string;
32574
+ } | null> | null;
32575
+ alumniOf?: Array<{
32576
+ __typename?: 'Organization';
32577
+ id: string;
32578
+ name: string;
32579
+ } | null> | null;
32580
+ birthPlace?: {
32581
+ __typename?: 'Place';
32582
+ id: string;
32583
+ name: string;
32584
+ } | null;
32585
+ deathPlace?: {
32586
+ __typename?: 'Place';
32587
+ id: string;
32588
+ name: string;
32589
+ } | null;
32590
+ homeLocation?: Array<{
32591
+ __typename?: 'Place';
32592
+ id: string;
32593
+ name: string;
32594
+ } | null> | null;
32595
+ workLocation?: Array<{
32596
+ __typename?: 'Place';
32597
+ id: string;
32598
+ name: string;
32599
+ } | null> | null;
32485
32600
  } | null> | null;
32486
32601
  clusters?: {
32487
32602
  __typename?: 'EntityClusters';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20251129002",
3
+ "version": "1.0.20251129003",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",