graphlit-client 1.0.20241207002 → 1.0.20241209001
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.
@@ -1077,6 +1077,12 @@ exports.GetContent = (0, graphql_tag_1.default) `
|
|
1077
1077
|
text
|
1078
1078
|
relevance
|
1079
1079
|
}
|
1080
|
+
frames {
|
1081
|
+
index
|
1082
|
+
description
|
1083
|
+
text
|
1084
|
+
relevance
|
1085
|
+
}
|
1080
1086
|
error
|
1081
1087
|
}
|
1082
1088
|
}
|
@@ -1508,6 +1514,12 @@ exports.QueryContents = (0, graphql_tag_1.default) `
|
|
1508
1514
|
text
|
1509
1515
|
relevance
|
1510
1516
|
}
|
1517
|
+
frames {
|
1518
|
+
index
|
1519
|
+
description
|
1520
|
+
text
|
1521
|
+
relevance
|
1522
|
+
}
|
1511
1523
|
error
|
1512
1524
|
}
|
1513
1525
|
}
|
@@ -1751,6 +1763,12 @@ exports.QueryContentsFacets = (0, graphql_tag_1.default) `
|
|
1751
1763
|
text
|
1752
1764
|
relevance
|
1753
1765
|
}
|
1766
|
+
frames {
|
1767
|
+
index
|
1768
|
+
description
|
1769
|
+
text
|
1770
|
+
relevance
|
1771
|
+
}
|
1754
1772
|
error
|
1755
1773
|
}
|
1756
1774
|
facets {
|
@@ -8297,6 +8297,8 @@ export type OrganizationFilter = {
|
|
8297
8297
|
searchType?: InputMaybe<SearchTypes>;
|
8298
8298
|
/** Filter organization(s) by their states. */
|
8299
8299
|
states?: InputMaybe<Array<EntityState>>;
|
8300
|
+
/** Filter by organization URI. */
|
8301
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
8300
8302
|
};
|
8301
8303
|
/** Represents an organization. */
|
8302
8304
|
export type OrganizationInput = {
|
@@ -8542,6 +8544,8 @@ export type PersonFilter = {
|
|
8542
8544
|
searchType?: InputMaybe<SearchTypes>;
|
8543
8545
|
/** Filter person(s) by their states. */
|
8544
8546
|
states?: InputMaybe<Array<EntityState>>;
|
8547
|
+
/** Filter by person URI. */
|
8548
|
+
uri?: InputMaybe<Scalars['URL']['input']>;
|
8545
8549
|
};
|
8546
8550
|
/** Represents a person. */
|
8547
8551
|
export type PersonInput = {
|
@@ -13145,6 +13149,13 @@ export type GetContentQuery = {
|
|
13145
13149
|
text?: string | null;
|
13146
13150
|
relevance?: number | null;
|
13147
13151
|
}> | null;
|
13152
|
+
frames?: Array<{
|
13153
|
+
__typename?: 'TextFrame';
|
13154
|
+
index?: number | null;
|
13155
|
+
description?: string | null;
|
13156
|
+
text?: string | null;
|
13157
|
+
relevance?: number | null;
|
13158
|
+
}> | null;
|
13148
13159
|
} | null;
|
13149
13160
|
};
|
13150
13161
|
export type IngestBatchMutationVariables = Exact<{
|
@@ -13626,6 +13637,13 @@ export type QueryContentsQuery = {
|
|
13626
13637
|
text?: string | null;
|
13627
13638
|
relevance?: number | null;
|
13628
13639
|
}> | null;
|
13640
|
+
frames?: Array<{
|
13641
|
+
__typename?: 'TextFrame';
|
13642
|
+
index?: number | null;
|
13643
|
+
description?: string | null;
|
13644
|
+
text?: string | null;
|
13645
|
+
relevance?: number | null;
|
13646
|
+
}> | null;
|
13629
13647
|
} | null> | null;
|
13630
13648
|
} | null;
|
13631
13649
|
};
|
@@ -13903,6 +13921,13 @@ export type QueryContentsFacetsQuery = {
|
|
13903
13921
|
text?: string | null;
|
13904
13922
|
relevance?: number | null;
|
13905
13923
|
}> | null;
|
13924
|
+
frames?: Array<{
|
13925
|
+
__typename?: 'TextFrame';
|
13926
|
+
index?: number | null;
|
13927
|
+
description?: string | null;
|
13928
|
+
text?: string | null;
|
13929
|
+
relevance?: number | null;
|
13930
|
+
}> | null;
|
13906
13931
|
} | null> | null;
|
13907
13932
|
facets?: Array<{
|
13908
13933
|
__typename?: 'ContentFacet';
|