From b6906e3708e0316c36162f77ddc40f1081edcbef Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Mon, 26 Nov 2018 18:15:22 +0100 Subject: [PATCH] Fixed seed command --- api/graphql-with-apollo/seeding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/graphql-with-apollo/seeding.md b/api/graphql-with-apollo/seeding.md index 205931683..1f3615666 100644 --- a/api/graphql-with-apollo/seeding.md +++ b/api/graphql-with-apollo/seeding.md @@ -7,13 +7,13 @@ Optionally you can seed the GraphQL service by executing mutations that will wri {% tabs %} {% tab title="Yarn" %} ```bash -yarn seedDb +yarn db:seed ``` {% endtab %} {% tab title="NPM" %} ```bash -npm run seedDb +npm run db:seed ``` {% endtab %} {% endtabs %}