Questions tagged [resolver]

363 questions
2
votes
2 answers

How to configure Spring and Angular to work together

I have a spring REST server (v3.2) and AngularJS for the client code. From my understanding in the basic scenario the user navigates to the base domain .com, index.html is being sent back and and from that point Angular manages the communication.…
special0ne
  • 6,063
  • 17
  • 67
  • 107
2
votes
2 answers

What is difference between nslookup and GetHostEntry?

nslookup google.co.kr IP results change whenever I tried this command But in C#, using method GetHostEntry() in library System.Net.Dns, I got always same results. I wanna know why this phenomenon has been occured and whether I can get same reuslt…
Jehyun Shim
  • 91
  • 2
  • 11
2
votes
1 answer

zend framework 2 Unable to render template resolver could not resolve to a file

I'm learning how to use Zend Framework2. According to some tutorials available on the Net I've wrote some pieces of code . The most important tutorial for me is this one: https://github.com/psamatt/zf2-doctrine-example It covers most of the basics…
Smok
  • 101
  • 2
  • 11
2
votes
2 answers

XSLT: Getting URI of a declared entity

I have an input XML that has entities declared in it. It looks something like this: ]> The DTD.dtd file…
Peter Jaloveczki
  • 2,039
  • 1
  • 19
  • 35
2
votes
2 answers

W/CursorWrapperInner(8375): Cursor finalized without prior close()

I am fed up of this issue, don't know actually where is problem, Below is my code : private void readSMS() throws IOException { // TODO Auto-generated method stub Log.d("Read SMS","Called"); ContentResolver cr =…
Caution Continues
  • 743
  • 2
  • 10
  • 25
2
votes
1 answer

Is there Android application to resolve intents when "activity not found to handle intent" by looking play store?

When "activity not found to handle intent" error occurs, I need search in the Play Google app store appropriate application. Is there way to find out application in play store by Intent, list them and display to the user? Then user can select one to…
2
votes
0 answers

"good enough" location field mapping to geographic heatmap in R

I'm trying to create a heatmap of users' location in various world regions in R, but the dataset I'm working with contained a free text location field for users to fill on their own -- hence the quality of place names varies quite a bit. I'm OK with…
serilain
  • 441
  • 4
  • 15
1
vote
1 answer

Avoiding javax.el.PropertyNotFoundException for resource bundle lookups in jsf 2.1 + spring 3

We have defined properties in several resource bundles, which are configured in the faces-config.xml webMessages feBundle We then try to access a property which is not…
bennidi
  • 2,092
  • 21
  • 27
1
vote
0 answers

Microservice Communication for Graphql APIs

Problem Statement : I have a GraphQl query defined which is responsible for fetching few details from the database. This graphql schema let's say is defined in microservice-B . Now I want this garphql API to be called by an upstream…
1
vote
0 answers

Appsync VTL to js resolver with mysql serverless

This is how js resolver file looks like from aws docs: import {util} from '@aws-appsync/utils'; export function request(ctx) { console.log("CTX", ctx); return {}; } export function response(ctx) { console.log("result...."); …
Nodir Nasirov
  • 1,488
  • 3
  • 26
  • 44
1
vote
1 answer

nestjs graphql set context after logging in interceptor

I would like the @Context to host some auth information such as tokens, users. I have created a TGqlContext type that is passed when initializing graphql export type TGqlContext = { req: Request; res: Response; accessToken: string; …
Jerome
  • 2,429
  • 2
  • 22
  • 37
1
vote
1 answer

Maven writes \u0000 into resolver-status.properties files, failing subsequent builds

I am using MacOS and I am using Maven in version 3.8.7. I am using Java in 11.0.17 by Eclipse Temurin. Somehow, when building a big Maven project, Maven creates resolver-status.properties files that contain invalid…
Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109
1
vote
0 answers

How to resolve chained graphql resolvers in an array

In a child resolver in GraphQL, I want to use an API to get the data. Example schema and resolver: import { gql,ApolloServer } from "apollo-server"; const typeDefs = gql` type Review{ id: String! rating: String! comments: [String] …
1
vote
1 answer

Difference between provides & output in pathom 3

What is the difference between provides & output here? #com.wsscode.pathom3.connect.operation.Resolver {:config #:com.wsscode.pathom3.connect.operation {:input [:ip] :provides {:longitude {} :latitude {}} :output [:longitude …
MouseNag
  • 303
  • 1
  • 9
1
vote
0 answers

Abstract type X must resolve to an Object type at runtime for field X

I'm new to GraphQL, and I've run into the issue mentioned in the title. I've tried all the solutions to the problem and still cannot figure it out. I know it is a duplicate question, but I can't seem to work my problem. I'm trying to log in a user…