forked from dapalex/py-graphql-mapper
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
168 changed files
with
46,693 additions
and
79,486 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,11 @@ | ||
# py-graphql-mapper Release Update | ||
|
||
## Release notes version: 1.1.2 | ||
|
||
Release date: Aug. 11, 2023 | ||
|
||
Changes | ||
|
||
* Extended visibility of fields feature allowing usage of symbol '*' in order to set same visibility for all fields in a type | ||
|
||
Bug fixes | ||
|
||
* Operations not exported when payload is scalar type | ||
* List of custom scalar types unusable | ||
|
||
## Release notes version: 1.1.1 | ||
|
||
Release date: Jul. 2, 2023 | ||
|
||
Changes | ||
|
||
* Operation types not anymore based on the conventional "Query/Mutation" string definition but checking *__schema -> QueryType/MutationType -> name* definition | ||
|
||
Bug fixes | ||
|
||
* Queries having payload as list return only 1 element of the list: the issue has been solved, also the list type will not show anymore the element type fields | ||
|
||
## Release notes version: 1.1.0 | ||
|
||
Release date: Feb. 10, 2023 | ||
|
||
Features | ||
|
||
* Assignment of arguments using kwargs: other than using _arg object fields to set the arguments, now it is also possible to assign arguments using kwargs in the constructor of the parent object. | ||
|
||
Bug fixes | ||
|
||
* Check for NonNullability types: nonnull types will be recognized when using arguments and variables (setting ! in GraphQL syntax). | ||
|
||
Breaking changes: | ||
|
||
Implemented Pythonic naming convention. | ||
The following signatures have changed: | ||
|
||
| Old | New | | ||
|:---------|:-----------| | ||
| fetchSchemaObject | fetch_schema_obj | | ||
| querySchemaAndTypes | QUERY_SCHEMA_AND_TYPES | | ||
| gqlTypes | gql_types | | ||
| gqlArgBuiltin | arg_builtin | | ||
| gqlOperations | gql_operations | | ||
| exportGqlSource | export_gql_source | | ||
| exportGQLVariables | export_gqlvariables | | ||
| printMessageOutput | print_msg_out | | ||
| mapGQLDataToObj | map_gqldata_to_obj | | ||
| setShow | set_show | | ||
| resultObject | result_obj | | ||
| _argsType | _args_type | | ||
| LiteralValues | LITERAL_VALUES | | ||
| Variables | VARIABLES | | ||
|
||
# graphql-dataclass Release Update | ||
|
||
## Release notes version: 1.0.0 | ||
|
||
Release note date: Jan. 8, 2023 | ||
|
||
Overview | ||
Release date: Mar. 19, 2024 | ||
|
||
A python library to call a GraphQL API without using hardcoded strings. | ||
Stable version allowing mapping of queries and mutations | ||
Changes | ||
|
||
* Removed graphql mutation/queries generation | ||
* Added proper dataclasses generation without extra dependencies | ||
* Added code cleanup of generated files to have(mostly automatic unused imports remove) |
Oops, something went wrong.