Currently, on some of the LoadAccess APIs, you can do:
- .with(graph) with graph interpreted as a “load” graph, and
- .with(graph, GraphSemantic.FETCH) to be explicit.
There’s no very good reason to prefer LOAD as the default here, and indeed, I think it’s very nonobvious. Also, typing .with(graph, GraphSemantic.FETCH) annoying. So I propose:
- deprecate the first one, and
- add {{fetching(graph)}}and {{loading(graph)}}which are more explicit, easier to type, and more fluent.
|