├── .gitignore ├── Java-Spring-boot ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── coding │ │ │ └── way │ │ │ └── nexar │ │ │ ├── NexarApplication.java │ │ │ ├── demo │ │ │ └── MainDemo.java │ │ │ ├── models │ │ │ ├── Credentials.java │ │ │ └── GraphQLResponse.java │ │ │ └── nexar │ │ │ └── NexarClient.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── coding │ └── way │ └── nexar │ └── NexarApplicationTests.java ├── LICENSE ├── README.md ├── c# └── SupplyQueryDemo │ ├── SupplyQueryDemo.sln │ └── SupplyQueryDemo │ ├── API │ ├── SupplyClient.cs │ └── SupplyTypes.cs │ ├── Config │ └── MultiMatchQueryDemoConfig.cs │ ├── Demos │ ├── MultiMatchQueryDemo.cs │ ├── MultiMatchQueryDemoType.cs │ └── SearchMpnQueryDemo.cs │ ├── Files │ ├── CsvFileParser.cs │ └── JsonFileHandler.cs │ ├── Helpers │ └── MultiMatchQueryHelper.cs │ ├── Models │ └── ManufacturerMpn.cs │ ├── Program.cs │ ├── SupplyQueryDemo.csproj │ └── appsettings.json ├── javascript ├── NexarClient │ └── nexarClient.js └── SupplyQueryDemo │ ├── basicDemo.js │ └── pagingDemo.js ├── python ├── SupplyQueryDemo │ ├── nexarClient.py │ ├── program.py │ └── requirements.txt └── csvDemo │ ├── input.csv │ ├── nexarClient.py │ └── program.py └── vba ├── README.md ├── apikey.txt ├── images └── developerRibbon.png ├── supplyExample.cls └── supplyExample.xlsm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/.gitignore -------------------------------------------------------------------------------- /Java-Spring-boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/.gitignore -------------------------------------------------------------------------------- /Java-Spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/pom.xml -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/java/com/coding/way/nexar/NexarApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/main/java/com/coding/way/nexar/NexarApplication.java -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/java/com/coding/way/nexar/demo/MainDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/main/java/com/coding/way/nexar/demo/MainDemo.java -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/java/com/coding/way/nexar/models/Credentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/main/java/com/coding/way/nexar/models/Credentials.java -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/java/com/coding/way/nexar/models/GraphQLResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/main/java/com/coding/way/nexar/models/GraphQLResponse.java -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/java/com/coding/way/nexar/nexar/NexarClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/main/java/com/coding/way/nexar/nexar/NexarClient.java -------------------------------------------------------------------------------- /Java-Spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=nexar-java-sdk-client 2 | -------------------------------------------------------------------------------- /Java-Spring-boot/src/test/java/com/coding/way/nexar/NexarApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/Java-Spring-boot/src/test/java/com/coding/way/nexar/NexarApplicationTests.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/README.md -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo.sln -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/API/SupplyClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/API/SupplyClient.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/API/SupplyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/API/SupplyTypes.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Config/MultiMatchQueryDemoConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Config/MultiMatchQueryDemoConfig.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Demos/MultiMatchQueryDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Demos/MultiMatchQueryDemo.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Demos/MultiMatchQueryDemoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Demos/MultiMatchQueryDemoType.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Demos/SearchMpnQueryDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Demos/SearchMpnQueryDemo.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Files/CsvFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Files/CsvFileParser.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Files/JsonFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Files/JsonFileHandler.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Helpers/MultiMatchQueryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Helpers/MultiMatchQueryHelper.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Models/ManufacturerMpn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Models/ManufacturerMpn.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/Program.cs -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/SupplyQueryDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/SupplyQueryDemo.csproj -------------------------------------------------------------------------------- /c#/SupplyQueryDemo/SupplyQueryDemo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/c#/SupplyQueryDemo/SupplyQueryDemo/appsettings.json -------------------------------------------------------------------------------- /javascript/NexarClient/nexarClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/javascript/NexarClient/nexarClient.js -------------------------------------------------------------------------------- /javascript/SupplyQueryDemo/basicDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/javascript/SupplyQueryDemo/basicDemo.js -------------------------------------------------------------------------------- /javascript/SupplyQueryDemo/pagingDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/javascript/SupplyQueryDemo/pagingDemo.js -------------------------------------------------------------------------------- /python/SupplyQueryDemo/nexarClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/python/SupplyQueryDemo/nexarClient.py -------------------------------------------------------------------------------- /python/SupplyQueryDemo/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/python/SupplyQueryDemo/program.py -------------------------------------------------------------------------------- /python/SupplyQueryDemo/requirements.txt: -------------------------------------------------------------------------------- 1 | requests -------------------------------------------------------------------------------- /python/csvDemo/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/python/csvDemo/input.csv -------------------------------------------------------------------------------- /python/csvDemo/nexarClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/python/csvDemo/nexarClient.py -------------------------------------------------------------------------------- /python/csvDemo/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/python/csvDemo/program.py -------------------------------------------------------------------------------- /vba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/vba/README.md -------------------------------------------------------------------------------- /vba/apikey.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vba/images/developerRibbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/vba/images/developerRibbon.png -------------------------------------------------------------------------------- /vba/supplyExample.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/vba/supplyExample.cls -------------------------------------------------------------------------------- /vba/supplyExample.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NexarDeveloper/nexar-first-supply-query/HEAD/vba/supplyExample.xlsm --------------------------------------------------------------------------------