@loopback/docs
Version:
Documentation files rendered at [https://loopback.io](https://loopback.io)
46 lines (29 loc) • 1.15 kB
Markdown
lang: en
title: 'API docs: context.context.unbind'
keywords: LoopBack 4.0, LoopBack 4, Node.js, TypeScript, OpenAPI
sidebar: lb4_sidebar
editurl: https://github.com/loopbackio/loopback-next/tree/master/packages/context
permalink: /doc/en/lb4/apidocs.context.context.unbind.html
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/context](./context.md) > [Context](./context.context.md) > [unbind](./context.context.unbind.md)
## Context.unbind() method
Unbind a binding from the context. No parent contexts will be checked.
<b>Signature:</b>
```typescript
unbind(key: BindingAddress): boolean;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| key | [BindingAddress](./context.bindingaddress.md) | Binding key |
<b>Returns:</b>
boolean
true if the binding key is found and removed from this context
## Remarks
If you need to unbind a binding owned by a parent context, use the code below:
```ts
const ownerCtx = ctx.getOwnerContext(key);
return ownerCtx != null && ownerCtx.unbind(key);
```