Skip to content

Commit

Permalink
from './providers/wpgraphql/...'
Browse files Browse the repository at this point in the history
  • Loading branch information
leoloso committed Mar 26, 2024
1 parent cb3664c commit de03851
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/data/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import {
QUERY_ALL_CATEGORIES as WPGRAPHQL_QUERY_ALL_CATEGORIES,
QUERY_CATEGORY_BY_SLUG as WPGRAPHQL_QUERY_CATEGORY_BY_SLUG,
QUERY_CATEGORY_SEO_BY_SLUG as WPGRAPHQL_QUERY_CATEGORY_SEO_BY_SLUG,
} from './wpgraphql/categories';
} from './providers/wpgraphql/categories';

import {
QUERY_ALL_CATEGORIES as GATOGRAPHQL_QUERY_ALL_CATEGORIES,
QUERY_CATEGORY_BY_SLUG as GATOGRAPHQL_QUERY_CATEGORY_BY_SLUG,
QUERY_CATEGORY_SEO_BY_SLUG as GATOGRAPHQL_QUERY_CATEGORY_SEO_BY_SLUG,
} from './gatographql/categories';
} from './providers/gatographql/categories';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down
4 changes: 2 additions & 2 deletions src/data/menus.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { WORDPRESS_GRAPHQL_PROVIDER_WPGRAPHQL, WORDPRESS_GRAPHQL_PROVIDER_GATOGRAPHQL } from './providers/providers';

import { QUERY_ALL_MENUS as WPGRAPHQL_QUERY_ALL_MENUS } from './wpgraphql/menus';
import { QUERY_ALL_MENUS as WPGRAPHQL_QUERY_ALL_MENUS } from './providers/wpgraphql/menus';

import { QUERY_ALL_MENUS as GATOGRAPHQL_QUERY_ALL_MENUS } from './gatographql/menus';
import { QUERY_ALL_MENUS as GATOGRAPHQL_QUERY_ALL_MENUS } from './providers/gatographql/menus';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down
4 changes: 2 additions & 2 deletions src/data/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
QUERY_ALL_PAGES as WPGRAPHQL_QUERY_ALL_PAGES,
QUERY_PAGE_BY_URI as WPGRAPHQL_QUERY_PAGE_BY_URI,
QUERY_PAGE_SEO_BY_URI as WPGRAPHQL_QUERY_PAGE_SEO_BY_URI,
} from './wpgraphql/pages';
} from './providers/wpgraphql/pages';

import {
PAGE_FIELDS as GATOGRAPHQL_PAGE_FIELDS,
Expand All @@ -16,7 +16,7 @@ import {
QUERY_ALL_PAGES as GATOGRAPHQL_QUERY_ALL_PAGES,
QUERY_PAGE_BY_URI as GATOGRAPHQL_QUERY_PAGE_BY_URI,
QUERY_PAGE_SEO_BY_URI as GATOGRAPHQL_QUERY_PAGE_SEO_BY_URI,
} from './gatographql/pages';
} from './providers/gatographql/pages';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down
4 changes: 2 additions & 2 deletions src/data/posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
QUERY_POSTS_BY_AUTHOR_SLUG as WPGRAPHQL_QUERY_POSTS_BY_AUTHOR_SLUG,
QUERY_POST_SEO_BY_SLUG as WPGRAPHQL_QUERY_POST_SEO_BY_SLUG,
QUERY_POST_PER_PAGE as WPGRAPHQL_QUERY_POST_PER_PAGE,
} from './wpgraphql/posts';
} from './providers/wpgraphql/posts';

import {
POST_FIELDS as GATOGRAPHQL_POST_FIELDS,
Expand All @@ -30,7 +30,7 @@ import {
QUERY_POSTS_BY_AUTHOR_SLUG as GATOGRAPHQL_QUERY_POSTS_BY_AUTHOR_SLUG,
QUERY_POST_SEO_BY_SLUG as GATOGRAPHQL_QUERY_POST_SEO_BY_SLUG,
QUERY_POST_PER_PAGE as GATOGRAPHQL_QUERY_POST_PER_PAGE,
} from './gatographql/posts';
} from './providers/gatographql/posts';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down
4 changes: 2 additions & 2 deletions src/data/site.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { WORDPRESS_GRAPHQL_PROVIDER_WPGRAPHQL, WORDPRESS_GRAPHQL_PROVIDER_GATOGR
import {
QUERY_SITE_DATA as WPGRAPHQL_QUERY_SITE_DATA,
QUERY_SEO_DATA as WPGRAPHQL_QUERY_SEO_DATA,
} from './wpgraphql/site';
} from './providers/wpgraphql/site';

import {
QUERY_SITE_DATA as GATOGRAPHQL_QUERY_SITE_DATA,
QUERY_SEO_DATA as GATOGRAPHQL_QUERY_SEO_DATA,
} from './gatographql/site';
} from './providers/gatographql/site';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down
4 changes: 2 additions & 2 deletions src/data/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import { WORDPRESS_GRAPHQL_PROVIDER_WPGRAPHQL, WORDPRESS_GRAPHQL_PROVIDER_GATOGR
import {
QUERY_ALL_USERS as WPGRAPHQL_QUERY_ALL_USERS,
QUERY_ALL_USERS_SEO as WPGRAPHQL_QUERY_ALL_USERS_SEO,
} from './wpgraphql/users';
} from './providers/wpgraphql/users';

import {
QUERY_ALL_USERS as GATOGRAPHQL_QUERY_ALL_USERS,
QUERY_ALL_USERS_SEO as GATOGRAPHQL_QUERY_ALL_USERS_SEO,
} from './gatographql/users';
} from './providers/gatographql/users';

module.exports = function feed(nextConfig = {}) {
const { env } = nextConfig;
Expand Down

0 comments on commit de03851

Please sign in to comment.