Changeset 2518274
- Timestamp:
- 04/20/2021 11:37:16 AM (5 years ago)
- Location:
- add-wpgraphql-redirection
- Files:
-
- 6 edited
- 1 copied
-
tags/0.0.3 (copied) (copied from add-wpgraphql-redirection/trunk)
-
tags/0.0.3/README.md (modified) (3 diffs)
-
tags/0.0.3/readme.txt (modified) (3 diffs)
-
tags/0.0.3/wp-graphql-redirection.php (modified) (3 diffs)
-
trunk/README.md (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-graphql-redirection.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-redirection/tags/0.0.3/README.md
r2514389 r2518274 9 9 - Install & activate [WPGraphQL](https://www.wpgraphql.com/) 10 10 - Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-redirection/) 11 - or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin 12 11 - or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin 13 12 14 13 ## Composer … … 17 16 composer require ashhitch/wp-graphql-redirection 18 17 ``` 19 20 18 21 19 ## Example Query … … 29 27 target 30 28 type 29 matchType 31 30 } 32 31 } -
add-wpgraphql-redirection/tags/0.0.3/readme.txt
r2514389 r2518274 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 0.0. 27 Stable tag: 0.0.3 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 17 17 == Example Query == 18 18 19 ` ``graphql19 ` 20 20 redirection { 21 21 redirects { … … 25 25 target 26 26 type 27 matchType 27 28 } 28 29 } 29 ` ``30 ` -
add-wpgraphql-redirection/tags/0.0.3/wp-graphql-redirection.php
r2514389 r2518274 9 9 * Text Domain: wp-graphql-redirection 10 10 * Domain Path: /languages 11 * Version: 0.0. 211 * Version: 0.0.3 12 12 * 13 13 * @package WP_Graphql_REDIRECTION … … 72 72 'groupId' => ['type' => 'Int'], 73 73 'groupName' => ['type' => 'String'], 74 'matchType' => ['type' => 'String'], 74 75 ], 75 76 ]); … … 117 118 'groupId' => $row->group_id, 118 119 'groupName' => $row->name, 120 'matchType' => $row->match_type, 119 121 ]; 120 122 } -
add-wpgraphql-redirection/trunk/README.md
r2514389 r2518274 9 9 - Install & activate [WPGraphQL](https://www.wpgraphql.com/) 10 10 - Install from the [WordPress Plugin Directory](https://wordpress.org/plugins/add-wpgraphql-redirection/) 11 - or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin 12 11 - or Clone or download the zip of this repository into your WordPress plugin directory & activate the plugin 13 12 14 13 ## Composer … … 17 16 composer require ashhitch/wp-graphql-redirection 18 17 ``` 19 20 18 21 19 ## Example Query … … 29 27 target 30 28 type 29 matchType 31 30 } 32 31 } -
add-wpgraphql-redirection/trunk/readme.txt
r2514389 r2518274 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 0.0. 27 Stable tag: 0.0.3 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 17 17 == Example Query == 18 18 19 ` ``graphql19 ` 20 20 redirection { 21 21 redirects { … … 25 25 target 26 26 type 27 matchType 27 28 } 28 29 } 29 ` ``30 ` -
add-wpgraphql-redirection/trunk/wp-graphql-redirection.php
r2514389 r2518274 9 9 * Text Domain: wp-graphql-redirection 10 10 * Domain Path: /languages 11 * Version: 0.0. 211 * Version: 0.0.3 12 12 * 13 13 * @package WP_Graphql_REDIRECTION … … 72 72 'groupId' => ['type' => 'Int'], 73 73 'groupName' => ['type' => 'String'], 74 'matchType' => ['type' => 'String'], 74 75 ], 75 76 ]); … … 117 118 'groupId' => $row->group_id, 118 119 'groupName' => $row->name, 120 'matchType' => $row->match_type, 119 121 ]; 120 122 }
Note: See TracChangeset
for help on using the changeset viewer.