Liking cljdoc? Tell your friends :D
ClojureScript only.

active-graphql.core


->argumentcljs

(->argument a-name value)

Positional factory function for active-graphql.core/argument.

Positional factory function for active-graphql.core/argument.
sourceraw docstring

->boolean-argumentcljs

(->boolean-argument arg)

Positional factory function for active-graphql.core/boolean-argument.

Positional factory function for active-graphql.core/boolean-argument.
sourceraw docstring

->documentcljs

(->document definitions)

Positional factory function for active-graphql.core/document.

Positional factory function for active-graphql.core/document.
sourceraw docstring

->fieldcljs

(->field f-alias f-name f-arguments directives selection-set)

Positional factory function for active-graphql.core/field.

Positional factory function for active-graphql.core/field.
sourceraw docstring

->float-argumentcljs

(->float-argument arg)

Positional factory function for active-graphql.core/float-argument.

Positional factory function for active-graphql.core/float-argument.
sourceraw docstring

->fragment-definitioncljs

(->fragment-definition f-name type-condition directives selection-set)

Positional factory function for active-graphql.core/fragment-definition.

Positional factory function for active-graphql.core/fragment-definition.
sourceraw docstring

->int-argumentcljs

(->int-argument arg)

Positional factory function for active-graphql.core/int-argument.

Positional factory function for active-graphql.core/int-argument.
sourceraw docstring

->operation-definitioncljs

(->operation-definition definition)

Positional factory function for active-graphql.core/operation-definition.

Positional factory function for active-graphql.core/operation-definition.
sourceraw docstring

->operation-type-querycljs

(->operation-type-query operation-type
                        q-name
                        variable-definitions
                        directives
                        selection-set)

Positional factory function for active-graphql.core/operation-type-query.

Positional factory function for active-graphql.core/operation-type-query.
sourceraw docstring

->resultcljs

(->result data errors)

Positional factory function for active-graphql.core/result.

Positional factory function for active-graphql.core/result.
sourceraw docstring

->string-argumentcljs

(->string-argument arg)

Positional factory function for active-graphql.core/string-argument.

Positional factory function for active-graphql.core/string-argument.
sourceraw docstring

->uuid-argumentcljs

(->uuid-argument arg)

Positional factory function for active-graphql.core/uuid-argument.

Positional factory function for active-graphql.core/uuid-argument.
sourceraw docstring

add-selections-to-query-documentcljs

(add-selections-to-query-document doc-query add-selections)
source

argumentcljs

source

argument-namecljs

(argument-name argument)

Access a-name field from a argument record. See active-graphql.core/make-argument.

Access `a-name` field from a [[argument]] record. See [[active-graphql.core/make-argument]].
sourceraw docstring

argument-valuecljs

(argument-value argument)

Access value field from a argument record. See active-graphql.core/make-argument.

Access `value` field from a [[argument]] record. See [[active-graphql.core/make-argument]].
sourceraw docstring

argument?cljs

(argument? thing)

Is object a argument record? See active-graphql.core/make-argument.

Is object a `argument` record? See [[active-graphql.core/make-argument]].
sourceraw docstring

arguments-from-mapcljs

(arguments-from-map args)
source

atomic-fieldcljs

(atomic-field alias name arguments)
source

boolean-argcljs

(boolean-arg arg)
source

boolean-argumentcljs

source

boolean-argument-argcljs

(boolean-argument-arg boolean-argument)

Access arg field from a boolean-argument record. See active-graphql.core/make-boolean-argument.

Access `arg` field from a [[boolean-argument]] record. See [[active-graphql.core/make-boolean-argument]].
sourceraw docstring

boolean-argument?cljs

(boolean-argument? thing)

Is object a boolean-argument record? See active-graphql.core/make-boolean-argument.

Is object a `boolean-argument` record? See [[active-graphql.core/make-boolean-argument]].
sourceraw docstring

create-requestcljs

(create-request document)

Takes a query document and returns a stringified (e.g. fully escaped version of it), ready to send to a grapqhl endpoint.

Takes a query document and returns a stringified (e.g. fully escaped version
of it), ready to send to a grapqhl endpoint.
sourceraw docstring

documentcljs

source

document-definitionscljs

(document-definitions document)

Access definitions field from a document record. See active-graphql.core/make-document.

Access `definitions` field from a [[document]] record. See [[active-graphql.core/make-document]].
sourceraw docstring

document?cljs

(document? thing)

Is object a document record? See active-graphql.core/make-document.

Is object a `document` record? See [[active-graphql.core/make-document]].
sourceraw docstring

fieldcljs

source

field*cljs

(field* alias name arguments selection-list)
source

field-aliascljs

(field-alias field)

Access f-alias field from a field record. See active-graphql.core/make-field.

Access `f-alias` field from a [[field]] record. See [[active-graphql.core/make-field]].
sourceraw docstring

field-argumentscljs

(field-arguments field)

Access f-arguments field from a field record. See active-graphql.core/make-field.

Access `f-arguments` field from a [[field]] record. See [[active-graphql.core/make-field]].
sourceraw docstring

field-directivescljs

(field-directives field)

Access directives field from a field record. See active-graphql.core/make-field.

Access `directives` field from a [[field]] record. See [[active-graphql.core/make-field]].
sourceraw docstring

field-namecljs

(field-name field)

Access f-name field from a field record. See active-graphql.core/make-field.

Access `f-name` field from a [[field]] record. See [[active-graphql.core/make-field]].
sourceraw docstring

field-selection-setcljs

(field-selection-set field)

Access selection-set field from a field record. See active-graphql.core/make-field.

Access `selection-set` field from a [[field]] record. See [[active-graphql.core/make-field]].
sourceraw docstring

field?cljs

(field? thing)

Is object a field record? See active-graphql.core/make-field.

Is object a `field` record? See [[active-graphql.core/make-field]].
sourceraw docstring

float-argcljs

(float-arg arg)
source

float-argumentcljs

source

float-argument-argcljs

(float-argument-arg float-argument)

Access arg field from a float-argument record. See active-graphql.core/make-float-argument.

Access `arg` field from a [[float-argument]] record. See [[active-graphql.core/make-float-argument]].
sourceraw docstring

float-argument?cljs

(float-argument? thing)

Is object a float-argument record? See active-graphql.core/make-float-argument.

Is object a `float-argument` record? See [[active-graphql.core/make-float-argument]].
sourceraw docstring

fragment-definitioncljs

source

fragment-definition?cljs

(fragment-definition? thing)

Is object a fragment-definition record? See active-graphql.core/make-fragment-definition.

Is object a `fragment-definition` record? See [[active-graphql.core/make-fragment-definition]].
sourceraw docstring

fragment-directivescljs

(fragment-directives fragment-definition)

Access directives field from a fragment-definition record. See active-graphql.core/make-fragment-definition.

Access `directives` field from a [[fragment-definition]] record. See [[active-graphql.core/make-fragment-definition]].
sourceraw docstring

fragment-namecljs

(fragment-name fragment-definition)

Access f-name field from a fragment-definition record. See active-graphql.core/make-fragment-definition.

Access `f-name` field from a [[fragment-definition]] record. See [[active-graphql.core/make-fragment-definition]].
sourceraw docstring

fragment-selection-setcljs

(fragment-selection-set fragment-definition)

Access selection-set field from a fragment-definition record. See active-graphql.core/make-fragment-definition.

Access `selection-set` field from a [[fragment-definition]] record. See [[active-graphql.core/make-fragment-definition]].
sourceraw docstring

fragment-type-conditioncljs

(fragment-type-condition fragment-definition)

Access type-condition field from a fragment-definition record. See active-graphql.core/make-fragment-definition.

Access `type-condition` field from a [[fragment-definition]] record. See [[active-graphql.core/make-fragment-definition]].
sourceraw docstring

graphqlcljs

(graphql & definitions)
source

int-argcljs

(int-arg arg)
source

int-argumentcljs

source

int-argument-argcljs

(int-argument-arg int-argument)

Access arg field from a int-argument record. See active-graphql.core/make-int-argument.

Access `arg` field from a [[int-argument]] record. See [[active-graphql.core/make-int-argument]].
sourceraw docstring

int-argument?cljs

(int-argument? thing)

Is object a int-argument record? See active-graphql.core/make-int-argument.

Is object a `int-argument` record? See [[active-graphql.core/make-int-argument]].
sourceraw docstring

make-argumentcljs

(make-argument a-name value)

Construct a argument record.

a-name: access via active-graphql.core/argument-name value: access via active-graphql.core/argument-value

Construct a `argument` record.

`a-name`: access via [[active-graphql.core/argument-name]]
`value`: access via [[active-graphql.core/argument-value]]
sourceraw docstring

make-boolean-argumentcljs

(make-boolean-argument arg)

Construct a boolean-argument record.

arg: access via active-graphql.core/boolean-argument-arg

Construct a `boolean-argument` record.

`arg`: access via [[active-graphql.core/boolean-argument-arg]]
sourceraw docstring

make-documentcljs

(make-document definitions)

Construct a document record.

definitions: access via active-graphql.core/document-definitions

Construct a `document` record.

`definitions`: access via [[active-graphql.core/document-definitions]]
sourceraw docstring

make-fieldcljs

(make-field f-alias f-name f-arguments directives selection-set)

Construct a field record.

f-alias: access via active-graphql.core/field-alias f-name: access via active-graphql.core/field-name f-arguments: access via active-graphql.core/field-arguments directives: access via active-graphql.core/field-directives selection-set: access via active-graphql.core/field-selection-set

Construct a `field` record.

`f-alias`: access via [[active-graphql.core/field-alias]]
`f-name`: access via [[active-graphql.core/field-name]]
`f-arguments`: access via [[active-graphql.core/field-arguments]]
`directives`: access via [[active-graphql.core/field-directives]]
`selection-set`: access via [[active-graphql.core/field-selection-set]]
sourceraw docstring

make-float-argumentcljs

(make-float-argument arg)

Construct a float-argument record.

arg: access via active-graphql.core/float-argument-arg

Construct a `float-argument` record.

`arg`: access via [[active-graphql.core/float-argument-arg]]
sourceraw docstring

make-fragment-definitioncljs

(make-fragment-definition f-name type-condition directives selection-set)

Construct a fragment-definition record.

f-name: access via active-graphql.core/fragment-name type-condition: access via active-graphql.core/fragment-type-condition directives: access via active-graphql.core/fragment-directives selection-set: access via active-graphql.core/fragment-selection-set

Construct a `fragment-definition` record.

`f-name`: access via [[active-graphql.core/fragment-name]]
`type-condition`: access via [[active-graphql.core/fragment-type-condition]]
`directives`: access via [[active-graphql.core/fragment-directives]]
`selection-set`: access via [[active-graphql.core/fragment-selection-set]]
sourceraw docstring

make-int-argumentcljs

(make-int-argument arg)

Construct a int-argument record.

arg: access via active-graphql.core/int-argument-arg

Construct a `int-argument` record.

`arg`: access via [[active-graphql.core/int-argument-arg]]
sourceraw docstring

make-new-operation-definitioncljs

(make-new-operation-definition definition)

Construct a operation-definition record.

definition: access via active-graphql.core/operation-definition-definition

Construct a `operation-definition` record.

`definition`: access via [[active-graphql.core/operation-definition-definition]]
sourceraw docstring

make-operation-type-querycljs

(make-operation-type-query operation-type
                           q-name
                           variable-definitions
                           directives
                           selection-set)
Construct a `operation-type-query` record.

`operation-type`: access via [[active-graphql.core/operation-type-operation-type]]
`q-name`: access via [[active-graphql.core/operation-type-query-name]]
`variable-definitions`: access via [[active-graphql.core/operation-type-query-variable-definitions]]
`directives`: access via [[active-graphql.core/operation-type-query-directives]]
`selection-set`: access via [[active-graphql.core/operation-type-query-selection-set]], lens [[active-graphql.core/operation-type-selection-set-lens]]
sourceraw docstring

make-resultcljs

(make-result data errors)

Construct a result record.

data: access via active-graphql.core/result-data, lens active-graphql.core/result-data-lens errors: access via active-graphql.core/result-errors

Construct a `result` record.

`data`: access via [[active-graphql.core/result-data]], lens [[active-graphql.core/result-data-lens]]
`errors`: access via [[active-graphql.core/result-errors]]
sourceraw docstring

make-string-argumentcljs

(make-string-argument arg)

Construct a string-argument record.

arg: access via active-graphql.core/string-argument-arg

Construct a `string-argument` record.

`arg`: access via [[active-graphql.core/string-argument-arg]]
sourceraw docstring

make-uuid-argumentcljs

(make-uuid-argument arg)

Construct a uuid-argument record.

arg: access via active-graphql.core/uuid-argument-arg

Construct a `uuid-argument` record.

`arg`: access via [[active-graphql.core/uuid-argument-arg]]
sourceraw docstring

map->argumentcljs

(map->argument G__3173)

Factory function for active-graphql.core/argument, taking a map of keywords to field values.

Factory function for active-graphql.core/argument, taking a map of keywords to field values.
sourceraw docstring

map->boolean-argumentcljs

(map->boolean-argument G__3159)

Factory function for active-graphql.core/boolean-argument, taking a map of keywords to field values.

Factory function for active-graphql.core/boolean-argument, taking a map of keywords to field values.
sourceraw docstring

map->documentcljs

(map->document G__3033)

Factory function for active-graphql.core/document, taking a map of keywords to field values.

Factory function for active-graphql.core/document, taking a map of keywords to field values.
sourceraw docstring

map->fieldcljs

(map->field G__3089)

Factory function for active-graphql.core/field, taking a map of keywords to field values.

Factory function for active-graphql.core/field, taking a map of keywords to field values.
sourceraw docstring

map->float-argumentcljs

(map->float-argument G__3117)

Factory function for active-graphql.core/float-argument, taking a map of keywords to field values.

Factory function for active-graphql.core/float-argument, taking a map of keywords to field values.
sourceraw docstring

map->fragment-definitioncljs

(map->fragment-definition G__3061)

Factory function for active-graphql.core/fragment-definition, taking a map of keywords to field values.

Factory function for active-graphql.core/fragment-definition, taking a map of keywords to field values.
sourceraw docstring

map->int-argumentcljs

(map->int-argument G__3103)

Factory function for active-graphql.core/int-argument, taking a map of keywords to field values.

Factory function for active-graphql.core/int-argument, taking a map of keywords to field values.
sourceraw docstring

map->operation-definitioncljs

(map->operation-definition G__3047)

Factory function for active-graphql.core/operation-definition, taking a map of keywords to field values.

Factory function for active-graphql.core/operation-definition, taking a map of keywords to field values.
sourceraw docstring

map->operation-type-querycljs

(map->operation-type-query G__3075)

Factory function for active-graphql.core/operation-type-query, taking a map of keywords to field values.

Factory function for active-graphql.core/operation-type-query, taking a map of keywords to field values.
sourceraw docstring

map->resultcljs

(map->result G__3187)

Factory function for active-graphql.core/result, taking a map of keywords to field values.

Factory function for active-graphql.core/result, taking a map of keywords to field values.
sourceraw docstring

map->string-argumentcljs

(map->string-argument G__3131)

Factory function for active-graphql.core/string-argument, taking a map of keywords to field values.

Factory function for active-graphql.core/string-argument, taking a map of keywords to field values.
sourceraw docstring

map->uuid-argumentcljs

(map->uuid-argument G__3145)

Factory function for active-graphql.core/uuid-argument, taking a map of keywords to field values.

Factory function for active-graphql.core/uuid-argument, taking a map of keywords to field values.
sourceraw docstring

mutationcljs

(mutation name selections)
source

operation-definitioncljs

source

operation-definition-definitioncljs

(operation-definition-definition operation-definition)

Access definition field from a operation-definition record. See active-graphql.core/make-new-operation-definition.

Access `definition` field from a [[operation-definition]] record. See [[active-graphql.core/make-new-operation-definition]].
sourceraw docstring

operation-definition?cljs

(operation-definition? thing)

Is object a operation-definition record? See active-graphql.core/make-new-operation-definition.

Is object a `operation-definition` record? See [[active-graphql.core/make-new-operation-definition]].
sourceraw docstring

operation-type-operation-typecljs

(operation-type-operation-type operation-type-query)

Access operation-type field from a operation-type-query record. See active-graphql.core/make-operation-type-query.

Access `operation-type` field from a [[operation-type-query]] record. See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-querycljs

source

operation-type-query-directivescljs

(operation-type-query-directives operation-type-query)

Access directives field from a operation-type-query record. See active-graphql.core/make-operation-type-query.

Access `directives` field from a [[operation-type-query]] record. See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-query-namecljs

(operation-type-query-name operation-type-query)
Access `q-name` field from a [[operation-type-query]] record. See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-query-selection-setcljs

(operation-type-query-selection-set operation-type-query)

Access selection-set field from a operation-type-query record. See active-graphql.core/make-operation-type-query.

Access `selection-set` field from a [[operation-type-query]] record. See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-query-variable-definitionscljs

(operation-type-query-variable-definitions operation-type-query)

Access variable-definitions field from a operation-type-query record. See active-graphql.core/make-operation-type-query.

Access `variable-definitions` field from a [[operation-type-query]] record. See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-query?cljs

(operation-type-query? thing)

Is object a operation-type-query record? See active-graphql.core/make-operation-type-query.

Is object a `operation-type-query` record? See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

operation-type-selection-set-lenscljs

Lens for the selection-set field from a operation-type-query record.See active-graphql.core/make-operation-type-query.

Lens for the `selection-set` field from a [[operation-type-query]] record.See [[active-graphql.core/make-operation-type-query]].
sourceraw docstring

(print-arg-value arg-value)
source

(print-argument argument)
source

(print-document document)

Takes a query document and converts it into a query string.

Takes a query document and converts it into a query string.
sourceraw docstring

(print-document-definition definition)
source

(print-field field)
source

(print-operation-definition definition)
source

(print-operation-type-query operation-type-query)
source

(print-selection selection)
source

(print-selection-set selection-set)
source

querycljs

(query name selections)
source

resultcljs

source

result-datacljs

(result-data result)

Access data field from a result record. See active-graphql.core/make-result.

Access `data` field from a [[result]] record. See [[active-graphql.core/make-result]].
sourceraw docstring

result-data-lenscljs

Lens for the data field from a result record.See active-graphql.core/make-result.

Lens for the `data` field from a [[result]] record.See [[active-graphql.core/make-result]].
sourceraw docstring

result-errorscljs

(result-errors result)

Access errors field from a result record. See active-graphql.core/make-result.

Access `errors` field from a [[result]] record. See [[active-graphql.core/make-result]].
sourceraw docstring

result?cljs

(result? thing)

Is object a result record? See active-graphql.core/make-result.

Is object a `result` record? See [[active-graphql.core/make-result]].
sourceraw docstring

string-argcljs

(string-arg arg)
source

string-argumentcljs

source

string-argument-argcljs

(string-argument-arg string-argument)

Access arg field from a string-argument record. See active-graphql.core/make-string-argument.

Access `arg` field from a [[string-argument]] record. See [[active-graphql.core/make-string-argument]].
sourceraw docstring

string-argument?cljs

(string-argument? thing)

Is object a string-argument record? See active-graphql.core/make-string-argument.

Is object a `string-argument` record? See [[active-graphql.core/make-string-argument]].
sourceraw docstring

stringifycljs

(stringify obj)

Takes an arbitrary clojurescript value and returns a JSON.stringify'ed string representation of it.

Takes an arbitrary clojurescript value and returns a JSON.stringify'ed string
representation of it.
sourceraw docstring

subscriptioncljs

(subscription name selection)
source

uuid-argcljs

(uuid-arg arg)
source

uuid-argumentcljs

source

uuid-argument-argcljs

(uuid-argument-arg uuid-argument)

Access arg field from a uuid-argument record. See active-graphql.core/make-uuid-argument.

Access `arg` field from a [[uuid-argument]] record. See [[active-graphql.core/make-uuid-argument]].
sourceraw docstring

uuid-argument?cljs

(uuid-argument? thing)

Is object a uuid-argument record? See active-graphql.core/make-uuid-argument.

Is object a `uuid-argument` record? See [[active-graphql.core/make-uuid-argument]].
sourceraw docstring

valid-result?cljs

(valid-result? result)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close