Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/graphql/graphql-js
/ isObjectLike
Function
isObjectLike
src/jsutils/isObjectLike.ts:7–11 ·
view source on GitHub ↗
( value: unknown, )
Source
from the content-addressed store, hash-verified
5
* @internal
6
*/
7
export
function
isObjectLike(
8
value: unknown,
9
): value is { [key: string]: unknown } {
10
return
typeof value ==
'object'
&& value !== null;
11
}
Callers
15
toJSONDeep
Function · 0.90
validateInputValueImpl
Function · 0.90
getCaughtErrorMessage
Function · 0.90
coerceInputValue
Function · 0.90
valueToLiteral
Function · 0.90
astFromValue
Function · 0.90
buildClientSchema
Function · 0.90
coerceOutputValueObject
Function · 0.90
uncoerceDefaultValue
Function · 0.90
detectValueDefaultValueCycle
Function · 0.90
constructor
Method · 0.90
isObjectLike-test.ts
File · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected