Interface GraphragService.WithRawResponse
-
- All Implemented Interfaces:
public interface GraphragService.WithRawResponseA view of GraphragService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract GraphragService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
getStats
@MustBeClosed() HttpResponseFor<GraphragGetStatsResponse> getStats(String id)
Returns a raw HTTP response for
get /vault/{id}/graphrag/stats, but is otherwise the same as GraphragService.getStats.
-
getStats
@MustBeClosed() HttpResponseFor<GraphragGetStatsResponse> getStats(String id, GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
@MustBeClosed() HttpResponseFor<GraphragGetStatsResponse> getStats(String id, GraphragGetStatsParams params)
-
getStats
@MustBeClosed() abstract HttpResponseFor<GraphragGetStatsResponse> getStats(GraphragGetStatsParams params, RequestOptions requestOptions)
-
getStats
@MustBeClosed() HttpResponseFor<GraphragGetStatsResponse> getStats(GraphragGetStatsParams params)
-
getStats
@MustBeClosed() HttpResponseFor<GraphragGetStatsResponse> getStats(String id, RequestOptions requestOptions)
-
init
@MustBeClosed() HttpResponseFor<GraphragInitResponse> init(String id)
Returns a raw HTTP response for
post /vault/{id}/graphrag/init, but is otherwise the same as GraphragService.init.
-
init
@MustBeClosed() HttpResponseFor<GraphragInitResponse> init(String id, GraphragInitParams params, RequestOptions requestOptions)
-
init
@MustBeClosed() HttpResponseFor<GraphragInitResponse> init(String id, GraphragInitParams params)
-
init
@MustBeClosed() abstract HttpResponseFor<GraphragInitResponse> init(GraphragInitParams params, RequestOptions requestOptions)
-
init
@MustBeClosed() HttpResponseFor<GraphragInitResponse> init(GraphragInitParams params)
-
init
@MustBeClosed() HttpResponseFor<GraphragInitResponse> init(String id, RequestOptions requestOptions)
-
processObject
@MustBeClosed() HttpResponseFor<GraphragProcessObjectResponse> processObject(String objectId, GraphragProcessObjectParams params)
Returns a raw HTTP response for
post /vault/{id}/graphrag/{objectId}, but is otherwise the same as GraphragService.processObject.
-
processObject
@MustBeClosed() HttpResponseFor<GraphragProcessObjectResponse> processObject(String objectId, GraphragProcessObjectParams params, RequestOptions requestOptions)
-
processObject
@MustBeClosed() HttpResponseFor<GraphragProcessObjectResponse> processObject(GraphragProcessObjectParams params)
-
processObject
@MustBeClosed() abstract HttpResponseFor<GraphragProcessObjectResponse> processObject(GraphragProcessObjectParams params, RequestOptions requestOptions)
-
-
-
-