unset_link¶
Type of operation: Metadata
Description¶
Drop a foreign key by specifying the foreign keys label. If the specified label does not exist, unset_link will not return an error, if multiple foreign keys exist with the same label, each of them will be dropped
Usage¶
unset_link label ...
Argument |
Type |
Required |
Multiple |
---|---|---|---|
label |
string |
Required |
Can be multiple |
Accelerable¶
unset_link is always accelerable if the input is accelerable. A dataset that only uses accelerable verbs can be accelerated, making queries on the dataset respond faster.
Examples¶
unset_link "SomeLink"
Drops a foreign key that goes to “SomeLink”.
Aliases¶
fkdrop
(deprecated)