diff --git a/_includes/js-toc.html b/_includes/js-toc.html index 8fe6f34..53dd648 100644 --- a/_includes/js-toc.html +++ b/_includes/js-toc.html @@ -24,4 +24,5 @@ * [Authentication]({{ site.github.url }}/js/authentication) * [State Syncing]({{ site.github.url }}/js/state-syncing) * [Data Down, Actions Up]({{ site.github.url }}/js/ddau) +* [Extra params]({{ site.github.url }}/js/extra-params) diff --git a/_site/feed.xml b/_site/feed.xml index 3c70792..d55ae5c 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -1,4 +1,4 @@ -Jekyll2020-05-29T10:03:07-04:00/GraphitiStylish Graph APIs +Jekyll2023-05-23T02:06:24-04:00/feed.xmlGraphitiStylish Graph APIs Tutorial Write-Ups Are Out!2019-10-14T00:00:00-04:002019-10-14T00:00:00-04:00/2019/10/14/tutorial<p>Though we’ve long had a <a href="https://github.com/graphiti-api/employee_directory">sample application</a> with step-by-step diffs, we’ve been missing a full walkthrough. That now exists! Start with <a href="https://www.graphiti.dev/tutorial/step_0">Step 0: Bootstrapping</a>.</p> <p>These write-ups will tell you the relevant code and commands, but diff --git a/_site/js/authentication.html b/_site/js/authentication.html index 7e3430d..872b330 100644 --- a/_site/js/authentication.html +++ b/_site/js/authentication.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/ddau.html b/_site/js/ddau.html index da7c3a4..8ea27c3 100644 --- a/_site/js/ddau.html +++ b/_site/js/ddau.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/extra-params.html b/_site/js/extra-params.html new file mode 100644 index 0000000..7e73688 --- /dev/null +++ b/_site/js/extra-params.html @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + Graphiti + + + + + + + + + + + + + + + + + + +
    +
    + + +
    +

    + Spraypaint + the isomorphic, framework-agnostic Graphiti ORM +

    + + + +
    +

    Extra Params

    + +

    Sometimes you need to submit params that are not standard jsonapi params. One great example would be +https://yourdomain.com/users?debug=true which is not a param for the UserResource you may have, but +might enable functionality in your controller as needed.

    + +

    Invoking it is pretty straightforward, just invoke extraParams and pass in params and values you wish +to add to your API call when executed.

    + +
    YourRecord.extraParams({ debug: true })
    + +

    One common way to use this globally is to put this into a base class so it can be chained as part of +every resource.

    + +
    +
    + Typescript +
    +
    + Javascript +
    +
    + +
    + +
      @Model
    +  export class ApplicationRecord extends SpraypaintBase {
    +    static withDebug<T extends ApplicationRecord>(): Scope<T> {
    +      return this.extraParams({ debug: true }) as Scope<T>;
    +    }
    +  }
    +  // unfortunately you will need to pass in the 
    +  // implementing class' type as a generic
    +  UserRecord.withDebug<UserRecord>().all()
    +  
    + +
      const ApplicationRecord = SpraypaintBase.extend({
    +    static: {
    +      withDebug: () => this.extraParams({ debug: true });
    +    }
    +  })
    +  UserRecord.withDebug().all()
    +  
    + +
    +
    + +
    +
    +
    + + + + + + diff --git a/_site/js/index.html b/_site/js/index.html index a3e8a87..54289c8 100644 --- a/_site/js/index.html +++ b/_site/js/index.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/installation.html b/_site/js/installation.html index 6178733..80ef972 100644 --- a/_site/js/installation.html +++ b/_site/js/installation.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/introduction.html b/_site/js/introduction.html index 52307b3..ed8ab9c 100644 --- a/_site/js/introduction.html +++ b/_site/js/introduction.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/middleware.html b/_site/js/middleware.html index 95ad4ea..fee7bdb 100644 --- a/_site/js/middleware.html +++ b/_site/js/middleware.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/fieldsets.html b/_site/js/reads/fieldsets.html index d18f853..1546378 100644 --- a/_site/js/reads/fieldsets.html +++ b/_site/js/reads/fieldsets.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/filtering.html b/_site/js/reads/filtering.html index e62a7c1..d62e41b 100644 --- a/_site/js/reads/filtering.html +++ b/_site/js/reads/filtering.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/includes.html b/_site/js/reads/includes.html index 8ecb628..33ecc6e 100644 --- a/_site/js/reads/includes.html +++ b/_site/js/reads/includes.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/index.html b/_site/js/reads/index.html index ff70dbc..162082c 100644 --- a/_site/js/reads/index.html +++ b/_site/js/reads/index.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/nested-queries.html b/_site/js/reads/nested-queries.html index b2fcb55..ea1f6dd 100644 --- a/_site/js/reads/nested-queries.html +++ b/_site/js/reads/nested-queries.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/pagination.html b/_site/js/reads/pagination.html index ba703f2..a91d22d 100644 --- a/_site/js/reads/pagination.html +++ b/_site/js/reads/pagination.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/sorting.html b/_site/js/reads/sorting.html index 1b1cdff..0f483d6 100644 --- a/_site/js/reads/sorting.html +++ b/_site/js/reads/sorting.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/reads/statistics.html b/_site/js/reads/statistics.html index f972d22..63802cd 100644 --- a/_site/js/reads/statistics.html +++ b/_site/js/reads/statistics.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/state-syncing.html b/_site/js/state-syncing.html index 18a8c97..c665fb3 100644 --- a/_site/js/state-syncing.html +++ b/_site/js/state-syncing.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/writes/deferred.html b/_site/js/writes/deferred.html index 6b1bbeb..c82cbf6 100644 --- a/_site/js/writes/deferred.html +++ b/_site/js/writes/deferred.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/writes/dirty-tracking.html b/_site/js/writes/dirty-tracking.html index 8085cff..5246c38 100644 --- a/_site/js/writes/dirty-tracking.html +++ b/_site/js/writes/dirty-tracking.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/writes/index.html b/_site/js/writes/index.html index dc732aa..36cd0ae 100644 --- a/_site/js/writes/index.html +++ b/_site/js/writes/index.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/writes/nested.html b/_site/js/writes/nested.html index 0cf1516..d5b2f5c 100644 --- a/_site/js/writes/nested.html +++ b/_site/js/writes/nested.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/_site/js/writes/validations.html b/_site/js/writes/validations.html index 4f48f7f..29323e1 100644 --- a/_site/js/writes/validations.html +++ b/_site/js/writes/validations.html @@ -121,6 +121,7 @@

  • Authentication
  • State Syncing
  • Data Down, Actions Up
  • +
  • Extra params
  • diff --git a/js/extra-params.md b/js/extra-params.md new file mode 100644 index 0000000..afd46e6 --- /dev/null +++ b/js/extra-params.md @@ -0,0 +1,47 @@ +--- +layout: page +--- + +{% include js-header.html %} +{% include js-toc.html %} + +
    +### Extra Params + +Sometimes you need to submit params that are not standard jsonapi params. One great example would be +`https://yourdomain.com/users?debug=true` which is not a param for the `UserResource` you may have, but +might enable functionality in your controller as needed. + +Invoking it is pretty straightforward, just invoke `extraParams` and pass in params and values you wish +to add to your API call when executed. + + +{% highlight typescript %} +YourRecord.extraParams({ debug: true }) +{% endhighlight %} + +One common way to use this globally is to put this into a base class so it can be chained as part of +every resource. + +{% include js-code-tabs.html %} +
    + {% highlight typescript %} + @Model + export class ApplicationRecord extends SpraypaintBase { + static withDebug(): Scope { + return this.extraParams({ debug: true }) as Scope; + } + } + // unfortunately you will need to pass in the + // implementing class' type as a generic + UserRecord.withDebug().all() + {% endhighlight %} + {% highlight javascript %} + const ApplicationRecord = SpraypaintBase.extend({ + static: { + withDebug: () => this.extraParams({ debug: true }); + } + }) + UserRecord.withDebug().all() + {% endhighlight %} +
    \ No newline at end of file