Use graph-based nearest hubs
All checks were successful
Build Docker Image / build (push) Successful in 6m46s
All checks were successful
Build Docker Image / build (push) Successful in 6m46s
This commit is contained in:
@@ -241,6 +241,7 @@ export type QueryNearestHubsArgs = {
|
|||||||
lon: Scalars['Float']['input'];
|
lon: Scalars['Float']['input'];
|
||||||
productUuid?: InputMaybe<Scalars['String']['input']>;
|
productUuid?: InputMaybe<Scalars['String']['input']>;
|
||||||
radius?: InputMaybe<Scalars['Float']['input']>;
|
radius?: InputMaybe<Scalars['Float']['input']>;
|
||||||
|
sourceUuid?: InputMaybe<Scalars['String']['input']>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -504,6 +505,7 @@ export type NearestHubsQueryVariables = Exact<{
|
|||||||
lon: Scalars['Float']['input'];
|
lon: Scalars['Float']['input'];
|
||||||
radius?: InputMaybe<Scalars['Float']['input']>;
|
radius?: InputMaybe<Scalars['Float']['input']>;
|
||||||
productUuid?: InputMaybe<Scalars['String']['input']>;
|
productUuid?: InputMaybe<Scalars['String']['input']>;
|
||||||
|
sourceUuid?: InputMaybe<Scalars['String']['input']>;
|
||||||
limit?: InputMaybe<Scalars['Int']['input']>;
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
|
|||||||
@@ -262,6 +262,7 @@ export function useCatalogInfo() {
|
|||||||
lat: entity.value.latitude,
|
lat: entity.value.latitude,
|
||||||
lon: entity.value.longitude,
|
lon: entity.value.longitude,
|
||||||
radius: 1000,
|
radius: 1000,
|
||||||
|
sourceUuid: entity.value.uuid,
|
||||||
limit: 12
|
limit: 12
|
||||||
},
|
},
|
||||||
'public',
|
'public',
|
||||||
@@ -312,6 +313,7 @@ export function useCatalogInfo() {
|
|||||||
lat: coords.lat,
|
lat: coords.lat,
|
||||||
lon: coords.lon,
|
lon: coords.lon,
|
||||||
radius: 1000,
|
radius: 1000,
|
||||||
|
sourceUuid: entity.value?.uuid ?? null,
|
||||||
limit: 12
|
limit: 12
|
||||||
},
|
},
|
||||||
'public',
|
'public',
|
||||||
|
|||||||
Reference in New Issue
Block a user