(add-taken-path! {:com.wsscode.pathom3.connect.runner/keys [node-run-stats*]}
{:com.wsscode.pathom3.connect.planner/keys [node-id]}
taken-path-id)
(all-requires-ready? env {:com.wsscode.pathom3.connect.planner/keys [expects]})
Check if all requirements from the node are present in the current entity.
Check if all requirements from the node are present in the current entity.
(cache-batch-item
{env' :com.wsscode.pathom3.connect.runner/env
:com.wsscode.pathom3.connect.runner/keys [node-resolver-input]
:com.wsscode.pathom3.connect.operation/keys [cache? cache-store]
:as batch-item}
batch-op
response)
(entry-ast graph k)
Get AST entry and pulls recursive query when needed.
Get AST entry and pulls recursive query when needed.
(invoke-mutation! env {:keys [key] :as ast})
Run mutation from AST.
Run mutation from AST.
(invoke-resolver-from-node env
{:com.wsscode.pathom3.connect.operation/keys
[op-name]
:com.wsscode.pathom3.connect.planner/keys [input]
:as node})
Evaluates a resolver using node information.
When this function runs the resolver, if filters the data to only include the keys mentioned by the resolver input. This is important to ensure that the resolver is not using some key that came accidentally due to execution order, that would lead to brittle executions.
Evaluates a resolver using node information. When this function runs the resolver, if filters the data to only include the keys mentioned by the resolver input. This is important to ensure that the resolver is not using some key that came accidentally due to execution order, that would lead to brittle executions.
(mark-resolver-error {:com.wsscode.pathom3.connect.runner/keys
[node-run-stats*]}
{:com.wsscode.pathom3.connect.planner/keys [node-id]}
error)
(merge-entity-data env entity new-data)
Specialized merge versions that work on entity data.
Specialized merge versions that work on entity data.
(merge-mutation-stats! {:com.wsscode.pathom3.connect.runner/keys
[node-run-stats*]}
{:com.wsscode.pathom3.connect.operation/keys [op-name]}
data)
(merge-node-stats! {:com.wsscode.pathom3.connect.runner/keys [node-run-stats*]}
{:com.wsscode.pathom3.connect.planner/keys [node-id]}
data)
(merge-resolver-response! env response)
This function gets the map returned from the resolver and merge the data in the current cache-tree.
This function gets the map returned from the resolver and merge the data in the current cache-tree.
(missing-maybe-in-pending-batch? {:com.wsscode.pathom3.path/keys [path] :as env}
input)
(normalize-ast-recursive-query {:keys [query] :as ast} graph k)
(pick-union-entry ast m)
Check if ast children is a union type. If so, makes a decision to choose a path and return that AST.
Check if ast children is a union type. If so, makes a decision to choose a path and return that AST.
(placeholder-merge-entity {:com.wsscode.pathom3.connect.planner/keys [graph]}
source-ent)
Create an entity to process the placeholder demands. This consider if the placeholder has params, params in placeholders means that you want some specific data at that point.
Create an entity to process the placeholder demands. This consider if the placeholder has params, params in placeholders means that you want some specific data at that point.
(priority-sort {:com.wsscode.pathom3.connect.planner/keys [graph] :as env}
node-ids)
Sort nodes based on the priority of the node successors. This scans all successors and choose which one has a node with the highest priority number.
Returns the paths and their highest priority, in order with the highest priority as first. For example:
[[6 1] [4 2]]
Means the first path is choosing node-id 6, and highest priority is 1.
Sort nodes based on the priority of the node successors. This scans all successors and choose which one has a node with the highest priority number. Returns the paths and their highest priority, in order with the highest priority as first. For example: [[6 1] [4 2]] Means the first path is choosing node-id 6, and highest priority is 1.
(process-attr-subquery {:com.wsscode.pathom3.connect.planner/keys [graph]
:as env}
entity
k
v)
(process-idents! env idents)
Process the idents from the Graph, this will add the ident data into the child.
If there is ident data already, it gets merged with the ident value.
Process the idents from the Graph, this will add the ident data into the child. If there is ident data already, it gets merged with the ident value.
(process-map-container-subquery env ast m)
Build a new map where the values are replaced with the map process of the subquery.
Build a new map where the values are replaced with the map process of the subquery.
(process-map-container? ast v)
Check if the map should be processed as a map-container, this means the sub-query should apply to the map values instead of the map itself.
This can be dictated by adding the ::pcr/map-container? meta data on the value, or requested by the query as part of the param.
Check if the map should be processed as a map-container, this means the sub-query should apply to the map values instead of the map itself. This can be dictated by adding the ::pcr/map-container? meta data on the value, or requested by the query as part of the param.
(process-mutations! {:com.wsscode.pathom3.connect.planner/keys [graph] :as env})
Runs the mutations gathered by the planner.
Runs the mutations gathered by the planner.
(report-resolver-io-stats {:com.wsscode.pathom3.connect.runner/keys
[run-stats-omit-resolver-io?]}
input-data
result)
(run-and-node! {:com.wsscode.pathom3.connect.planner/keys [graph] :as env}
{:com.wsscode.pathom3.connect.planner/keys [run-and]
:as and-node})
Given an AND node, runs every attached node, then runs the attached next.
Given an AND node, runs every attached node, then runs the attached next.
(run-graph! env ast-or-graph entity-tree*)
Plan and execute a request, given an environment (with indexes), the request AST and the entity-tree*.
Plan and execute a request, given an environment (with indexes), the request AST and the entity-tree*.
(run-graph!* {:com.wsscode.pathom3.connect.planner/keys [graph] :as env})
Run the root node of the graph. As resolvers run, the result will be add to the entity cache tree.
Run the root node of the graph. As resolvers run, the result will be add to the entity cache tree.
(run-next-node! {:com.wsscode.pathom3.connect.planner/keys [graph] :as env}
{:com.wsscode.pathom3.connect.planner/keys [run-next]})
Runs the next node associated with the node, in case it exists.
Runs the next node associated with the node, in case it exists.
(run-node! env node)
Run a node from the compute graph. This will start the processing on the sent node and them will run everything that's connected to this node as sequences of it.
The result is going to build up at ::p.ent/cache-tree*, after the run is concluded the output will be there.
Run a node from the compute graph. This will start the processing on the sent node and them will run everything that's connected to this node as sequences of it. The result is going to build up at ::p.ent/cache-tree*, after the run is concluded the output will be there.
(run-or-node! {:com.wsscode.pathom3.connect.planner/keys [graph]
:com.wsscode.pathom3.connect.runner/keys [choose-path]
:or {choose-path default-choose-path}
:as env}
{:com.wsscode.pathom3.connect.planner/keys [run-or] :as or-node})
(run-resolver-node! env node)
This function evaluates the resolver associated with the node.
First it checks if the expected results from the resolver are already available. In case they are, the resolver call is skipped.
This function evaluates the resolver associated with the node. First it checks if the expected results from the resolver are already available. In case they are, the resolver call is skipped.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close