Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
awkay committed Nov 7, 2016
2 parents a0d4a93 + bb74b73 commit 199a4a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You should now be able to run the builds via the IDE.
### Command line

```
JVM_OPTS="-Ddevguide" lein run -m clojure.main script/figwheel.clj
JVM_OPTS="-Ddevguide -Dtest" lein run -m clojure.main script/figwheel.clj
```

## Accessing the Guide and the Tests:
Expand Down
Binary file modified docs/figwheel-build.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/devguide/untangled_devguide/M30_Advanced_Mutation.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
IMPORTANT: The general interaction with the world requires integration of external data (often in a tree format) with
your app database (normalized graph of maps/vectors). As a result, you almost always want an Om-managed query when
integrating data, so that the result is normalized. This is also why mutations don't have return values: there is
no query to use to merge such a result.
no query to use to merge such a result (in stock Om Next you
could override merge to try to address this, but we feel that
creates a concentration of cross-cutting concerns in `merge` with
little practical benefit).
### Creating Components *Just* For Their Queries
Expand Down

0 comments on commit 199a4a8

Please sign in to comment.