From 91cebe5af64d0667ddb5ab3bf99c5f29a8911976 Mon Sep 17 00:00:00 2001 From: Sam Clopton Date: Tue, 14 Jul 2020 15:49:57 -0700 Subject: [PATCH] Fix invalid links --- cookbooks/without-activerecord.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/without-activerecord.md b/cookbooks/without-activerecord.md index 28d5a9f..8cb5428 100644 --- a/cookbooks/without-activerecord.md +++ b/cookbooks/without-activerecord.md @@ -95,7 +95,7 @@ ActiveRecord, we might want an `ActiveRecord::Relation` like mind the premise of building a hash of options and passing it off to a client can apply to any datastore). -Finally, we're [resolving that scope](/graphiti/guides/concepts/resources#resolve), +Finally, we're [resolving that scope]({{site.github.url}}/guides/concepts/resources#resolve), returning the full dataset for now. The contract of `#resolve` is to return an array of model instances, hence `DATA.map { |d| Post.new(d) }`. @@ -210,7 +210,7 @@ end These are the overrides for persistence operations. You are encouraged **not** to override `create/update/destroy` directly and instead use -[Persistence Lifecycle Hooks]({{site.github.url}}/concepts/resources#persistence-lifecycle-hooks). +[Persistence Lifecycle Hooks]({{site.github.url}}/guides/concepts/resources#persistence-lifecycle-hooks). {% include h.html tag="h2" text="Adapters" a="adapters" %}