You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
I am upgrading my codebase from cppgraphqlgen version 3.6.0 to the latest version 4.5.8.
Current Setup:
Compiler: g++ 14
Operating System: Ubuntu 24.04 LTS
Schema Folder: Contains the schema files generated by cppgraphqlgen (latest version).
Goal:
I need to implement GreetImpl.cpp for the latest schema generated files in the schema folder.
Additionally, if possible, I would like to integrate the schema compiled by cppgraphqlgen (as part of greet.node) into an express-graphql server.
Exclusions:
Node Addon Part: I am not focusing on the Node.js add-on implementation mentioned in my Stack Overflow question.
The primary focus is resolving compilation errors when implementing GreetImpl.cpp for the upgraded schema.
Steps to Reproduce
Use the schema files generated by cppgraphqlgen v4.5.8 in the schema folder.
Update the GreetImpl.cpp file to support the new schema structure.
Compile the project using g++ version 14.
Observed Behavior
Compilation errors are encountered when implementing GreetImpl.cpp with the new schema.
Expected Behavior GreetImpl.cpp should compile successfully, and the schema should be integrated seamlessly into the codebase.
Notes
For reference, the previous implementation was based on cppgraphqlgen v3.6.0 and used a simple greet message ("Hello World") with MockData.
Any guidance or insights into addressing the compatibility issues with the schema generated by cppgraphqlgen v4.5.8 would be highly appreciated.
The text was updated successfully, but these errors were encountered:
YJPrakash
changed the title
Upgrading Node.js Add-on with cppgraphqlgen to Support Version 4.5.8 and GraphiQL Integration
Upgrade cppgraphqlgen Codebase from v3.6.0 to v4.5.8
Dec 18, 2024
There's going to be a 5.x release soon, and that migration guide might be replaced in main with guidance for upgrading from 4.x to 5.x. If that version of the guide doesn't work, try changing your view from the main branch to v4.x, which will be the servicing branch for 4.x once 5.x is released.
Description
I am upgrading my codebase from
cppgraphqlgen
version 3.6.0 to the latest version 4.5.8.Current Setup:
cppgraphqlgen
(latest version).Goal:
I need to implement
GreetImpl.cpp
for the latest schema generated files in theschema
folder.Additionally, if possible, I would like to integrate the schema compiled by
cppgraphqlgen
(as part ofgreet.node
) into an express-graphql server.Exclusions:
GreetImpl.cpp
for the upgraded schema.Steps to Reproduce
cppgraphqlgen
v4.5.8 in the schema folder.GreetImpl.cpp
file to support the new schema structure.g++
version 14.Observed Behavior
Compilation errors are encountered when implementing
GreetImpl.cpp
with the new schema.Expected Behavior
GreetImpl.cpp
should compile successfully, and the schema should be integrated seamlessly into the codebase.Notes
For reference, the previous implementation was based on
cppgraphqlgen
v3.6.0 and used a simple greet message("Hello World")
with MockData.Any guidance or insights into addressing the compatibility issues with the schema generated by
cppgraphqlgen
v4.5.8 would be highly appreciated.The text was updated successfully, but these errors were encountered: